({
className,
...props
}: React.ComponentProps<"div">)
| 50 | } |
| 51 | |
| 52 | function AlertDescription({ |
| 53 | className, |
| 54 | ...props |
| 55 | }: React.ComponentProps<"div">) { |
| 56 | return ( |
| 57 | <div |
| 58 | data-slot="alert-description" |
| 59 | className={cn("mt-1 text-sm [&_p]:leading-relaxed", className)} |
| 60 | {...props} |
| 61 | /> |
| 62 | ) |
| 63 | } |
| 64 | |
| 65 | export { Alert, AlertTitle, AlertDescription } |