Function
SheetHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 80 | } |
| 81 | |
| 82 | function SheetHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 83 | return ( |
| 84 | <div |
| 85 | data-slot="sheet-header" |
| 86 | className={cn("flex flex-col gap-1.5 p-4", className)} |
| 87 | {...props} |
| 88 | /> |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | function SheetFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 93 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected