Function
DrawerHeader
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 44 | DrawerContent.displayName = "DrawerContent"; |
| 45 | |
| 46 | const DrawerHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 47 | <div className={cn("grid gap-1.5 p-4 text-center sm:text-left", className)} {...props} /> |
| 48 | ); |
| 49 | DrawerHeader.displayName = "DrawerHeader"; |
| 50 | |
| 51 | const DrawerFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
Callers
nothing calls this directly
Tested by
no test coverage detected