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