Function
AlertDialogDescription
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 106 | } |
| 107 | |
| 108 | function AlertDialogDescription({ |
| 109 | className, |
| 110 | ...props |
| 111 | }: React.ComponentProps<typeof AlertDialogPrimitive.Description>) { |
| 112 | return ( |
| 113 | <AlertDialogPrimitive.Description |
| 114 | data-slot="alert-dialog-description" |
| 115 | className={cn("text-muted-foreground text-sm", className)} |
| 116 | {...props} |
| 117 | /> |
| 118 | ) |
| 119 | } |
| 120 | |
| 121 | function AlertDialogAction({ |
| 122 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected