Function
AlertDialogDescription
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 126 | } |
| 127 | |
| 128 | function AlertDialogDescription({ |
| 129 | className, |
| 130 | ...props |
| 131 | }: React.ComponentProps<typeof AlertDialogPrimitive.Description>) { |
| 132 | return ( |
| 133 | <AlertDialogPrimitive.Description |
| 134 | data-slot="alert-dialog-description" |
| 135 | className={cn( |
| 136 | "text-muted-foreground *:[a]:hover:text-foreground text-xs/relaxed text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3", |
| 137 | className |
| 138 | )} |
| 139 | {...props} |
| 140 | /> |
| 141 | ); |
| 142 | } |
| 143 | |
| 144 | function AlertDialogAction({ |
| 145 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected