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