import { Skeleton } from "ui/skeleton"; interface EditShareableLoadingProps { title?: string; showGenerateButton?: boolean; } export function EditShareableLoading({ title, showGenerateButton = false, }: EditShareableLoadingProps) { return (
{/* Header */}
{title ? (

{title}

) : ( )}
{showGenerateButton && }
{/* Name and icon */}
{/* Description */}
{/* Settings */}
{/* Role/Visibility */}
{/* Instructions/Content */}
{/* Tools/Additional settings */}
{/* Save button */}
); }