Function
DialogDescription
({
className,
...props
}: DialogPrimitive.Description.Props)
Source from the content-addressed store, hash-verified
| 128 | } |
| 129 | |
| 130 | function DialogDescription({ |
| 131 | className, |
| 132 | ...props |
| 133 | }: DialogPrimitive.Description.Props) { |
| 134 | return ( |
| 135 | <DialogPrimitive.Description |
| 136 | data-slot="dialog-description" |
| 137 | className={cn( |
| 138 | "text-muted-foreground *:[a]:hover:text-foreground text-xs/relaxed *:[a]:underline *:[a]:underline-offset-3", |
| 139 | className |
| 140 | )} |
| 141 | {...props} |
| 142 | /> |
| 143 | ); |
| 144 | } |
| 145 | |
| 146 | export { |
| 147 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected