{children}
); } // ─── Alert ─────────────────────────────────────────────────────────────────── const alertVariants = cva( "relative w-full rounded-lg border p-4", { variants: { variant: { default: "bg-background text-foreground", destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive", }, }, defaultVariants: { variant: "default", }, } ); export interface AlertProps extends React.HTMLAttributes