Function
DrawerFooter
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 76 | } |
| 77 | |
| 78 | function DrawerFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 79 | return ( |
| 80 | <div |
| 81 | data-slot="drawer-footer" |
| 82 | className={cn("mt-auto flex flex-col gap-2 p-4", className)} |
| 83 | {...props} |
| 84 | /> |
| 85 | ); |
| 86 | } |
| 87 | |
| 88 | function DrawerTitle({ className, ...props }: React.ComponentProps<typeof DrawerPrimitive.Title>) { |
| 89 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected