Function
DrawerTitle
({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 86 | } |
| 87 | |
| 88 | function DrawerTitle({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Title>) { |
| 89 | return ( |
| 90 | <DrawerPrimitive.Title |
| 91 | data-slot="drawer-title" |
| 92 | className={cn("font-semibold text-foreground", className)} |
| 93 | {...props} |
| 94 | /> |
| 95 | ); |
| 96 | } |
| 97 | |
| 98 | function DrawerDescription({ |
| 99 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected