Function
DrawerHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 74 | } |
| 75 | |
| 76 | function DrawerHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 77 | return ( |
| 78 | <div |
| 79 | data-slot="drawer-header" |
| 80 | className={cn("flex flex-col gap-1.5 p-4", className)} |
| 81 | {...props} |
| 82 | /> |
| 83 | ); |
| 84 | } |
| 85 | |
| 86 | function DrawerFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 87 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected