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