({ className, ...props }: React.ComponentProps<"div">)
| 72 | } |
| 73 | |
| 74 | function DrawerHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 75 | return ( |
| 76 | <div |
| 77 | className={cn( |
| 78 | "flex flex-col gap-0.5 p-4 group-data-[vaul-drawer-direction=bottom]/drawer-content:text-center group-data-[vaul-drawer-direction=top]/drawer-content:text-center md:gap-1.5 md:text-left", |
| 79 | className, |
| 80 | )} |
| 81 | data-slot="drawer-header" |
| 82 | {...props} |
| 83 | /> |
| 84 | ) |
| 85 | } |
| 86 | |
| 87 | function DrawerFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 88 | return ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…