Function
AlertDescription
({
className,
...props
}: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 48 | } |
| 49 | |
| 50 | function AlertDescription({ |
| 51 | className, |
| 52 | ...props |
| 53 | }: React.ComponentProps<"div">) { |
| 54 | return ( |
| 55 | <div |
| 56 | data-slot="alert-description" |
| 57 | className={cn( |
| 58 | "text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed", |
| 59 | className |
| 60 | )} |
| 61 | {...props} |
| 62 | /> |
| 63 | ) |
| 64 | } |
| 65 | |
| 66 | export { Alert, AlertTitle, AlertDescription } |
Callers
nothing calls this directly
Tested by
no test coverage detected