Function
DrawerHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 56 | DrawerContent.displayName = 'DrawerContent'; |
| 57 | |
| 58 | const DrawerHeader = ({ |
| 59 | className, |
| 60 | ...props |
| 61 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 62 | <div |
| 63 | className={cn('grid gap-1.5 p-4 text-center sm:text-left', className)} |
| 64 | {...props} |
| 65 | /> |
| 66 | ); |
| 67 | DrawerHeader.displayName = 'DrawerHeader'; |
| 68 | |
| 69 | const DrawerFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected