Function
DialogDescription
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 130 | } |
| 131 | |
| 132 | function DialogDescription({ |
| 133 | className, |
| 134 | ...props |
| 135 | }: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 136 | return ( |
| 137 | <DialogPrimitive.Description |
| 138 | data-slot="dialog-description" |
| 139 | className={cn("text-sm text-[var(--color-text-weak)]", className)} |
| 140 | {...props} |
| 141 | /> |
| 142 | ) |
| 143 | } |
| 144 | |
| 145 | export { |
| 146 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected