Function
DialogDescription
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 117 | } |
| 118 | |
| 119 | function DialogDescription({ |
| 120 | className, |
| 121 | ...props |
| 122 | }: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 123 | return ( |
| 124 | <DialogPrimitive.Description |
| 125 | data-slot="dialog-description" |
| 126 | className={cn("text-muted-foreground text-sm", className)} |
| 127 | {...props} |
| 128 | /> |
| 129 | ) |
| 130 | } |
| 131 | |
| 132 | export { |
| 133 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected