({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Title>)
| 103 | } |
| 104 | |
| 105 | function DialogTitle({ |
| 106 | className, |
| 107 | ...props |
| 108 | }: React.ComponentProps<typeof DialogPrimitive.Title>) { |
| 109 | return ( |
| 110 | <DialogPrimitive.Title |
| 111 | className={cn("text-lg leading-none font-semibold", className)} |
| 112 | data-slot="dialog-title" |
| 113 | {...props} |
| 114 | /> |
| 115 | ) |
| 116 | } |
| 117 | |
| 118 | function DialogDescription({ |
| 119 | className, |
nothing calls this directly
no test coverage detected
searching dependent graphs…