import { type VariantProps, cva } from 'class-variance-authority' import { HTMLAttributes, defineComponent } from 'vue' import { cn } from '@/utils' const alertVariants = cva( 'relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground', { variants: { variant: { default: 'bg-background text-foreground', destructive: 'border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive', }, }, defaultVariants: { variant: 'default', }, }, ) const Alert = defineComponent & HTMLAttributes>((props, { slots, attrs }) => { const variant = props.variant ?? 'default' return () => ( ) }, {name: "Alert"}) const AlertTitle = defineComponent((props, {slots, attrs}) => { return () =>(
{slots.default?.()}
)}, {name: "AlertTitle"}) const AlertDescription = defineComponent((props, {slots, attrs}) => { return () => (
{slots.default?.()}
)}, {name: "AlertDescription"}) export { Alert, AlertTitle, AlertDescription }