Function
DialogDescription
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 139 | } |
| 140 | |
| 141 | function DialogDescription({ |
| 142 | className, |
| 143 | ...props |
| 144 | }: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 145 | return ( |
| 146 | <DialogPrimitive.Description |
| 147 | data-slot="dialog-description" |
| 148 | className={cn("text-sm text-muted-foreground", className)} |
| 149 | {...props} |
| 150 | /> |
| 151 | ); |
| 152 | } |
| 153 | |
| 154 | export { |
| 155 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected