({ className, ...props }: React.ComponentProps<"div">)
| 90 | } |
| 91 | |
| 92 | function SheetFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 93 | return ( |
| 94 | <div |
| 95 | data-slot="sheet-footer" |
| 96 | className={cn("mt-auto flex flex-col gap-2 p-4", className)} |
| 97 | {...props} |
| 98 | /> |
| 99 | ) |
| 100 | } |
| 101 | |
| 102 | function SheetTitle({ |
| 103 | className, |