Function
DrawerFooter
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 67 | DrawerHeader.displayName = 'DrawerHeader'; |
| 68 | |
| 69 | const DrawerFooter = ({ |
| 70 | className, |
| 71 | ...props |
| 72 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 73 | <div |
| 74 | className={cn('mt-auto flex flex-col gap-2 p-4', className)} |
| 75 | {...props} |
| 76 | /> |
| 77 | ); |
| 78 | DrawerFooter.displayName = 'DrawerFooter'; |
| 79 | |
| 80 | const DrawerTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected