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