Function
SheetHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 107 | } |
| 108 | |
| 109 | function SheetHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 110 | return ( |
| 111 | <div |
| 112 | className={cn( |
| 113 | "flex flex-col gap-2 p-6 in-[[data-slot=sheet-popup]:has([data-slot=sheet-panel])]:pb-3 max-sm:pb-4", |
| 114 | className, |
| 115 | )} |
| 116 | data-slot="sheet-header" |
| 117 | {...props} |
| 118 | /> |
| 119 | ); |
| 120 | } |
| 121 | |
| 122 | function SheetFooter({ |
| 123 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected