Function
DialogDescription
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 148 | } |
| 149 | |
| 150 | function DialogDescription({ |
| 151 | className, |
| 152 | ...props |
| 153 | }: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 154 | return ( |
| 155 | <DialogPrimitive.Description |
| 156 | data-slot="dialog-description" |
| 157 | className={cn("text-sm text-muted-foreground", className)} |
| 158 | {...props} |
| 159 | /> |
| 160 | ); |
| 161 | } |
| 162 | |
| 163 | export { |
| 164 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected