Function
AlertDescription
({
className,
...props
}: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 44 | } |
| 45 | |
| 46 | function AlertDescription({ |
| 47 | className, |
| 48 | ...props |
| 49 | }: React.ComponentProps<"div">) { |
| 50 | return ( |
| 51 | <div |
| 52 | data-slot="alert-description" |
| 53 | className={cn( |
| 54 | "text-muted-foreground text-sm text-balance md:text-pretty group-has-[>svg]/alert:col-start-2 [&_p:not(:last-child)]:mb-4 [&_a]:hover:text-foreground [&_a]:underline [&_a]:underline-offset-3", |
| 55 | className |
| 56 | )} |
| 57 | {...props} |
| 58 | /> |
| 59 | ) |
| 60 | } |
| 61 | |
| 62 | function AlertAction({ className, ...props }: React.ComponentProps<"div">) { |
| 63 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected