({ className, ...props }: React.ComponentProps<"div">)
| 86 | } |
| 87 | |
| 88 | function DrawerFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 89 | return ( |
| 90 | <div |
| 91 | data-slot="drawer-footer" |
| 92 | className={cn("mt-auto flex flex-col gap-2 p-4", className)} |
| 93 | {...props} |
| 94 | /> |
| 95 | ) |
| 96 | } |
| 97 | |
| 98 | function DrawerTitle({ |
| 99 | className, |