Function
DialogDescription
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>)
Source from the content-addressed store, hash-verified
| 174 | } |
| 175 | |
| 176 | function DialogDescription({ |
| 177 | className, |
| 178 | ...props |
| 179 | }: React.ComponentProps<typeof DialogPrimitive.Description>) { |
| 180 | return ( |
| 181 | <DialogPrimitive.Description |
| 182 | data-slot="dialog-description" |
| 183 | className={cn('text-muted-foreground text-sm', className)} |
| 184 | {...props} |
| 185 | /> |
| 186 | ); |
| 187 | } |
| 188 | |
| 189 | export { |
| 190 | Dialog, |
Callers
nothing calls this directly
Tested by
no test coverage detected