Function
SheetHeader
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 73 | SheetContent.displayName = SheetPrimitive.Content.displayName; |
| 74 | |
| 75 | const SheetHeader = ({ |
| 76 | className, |
| 77 | ...props |
| 78 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 79 | <div |
| 80 | className={cn( |
| 81 | 'flex flex-col space-y-2 text-center sm:text-left', |
| 82 | className, |
| 83 | )} |
| 84 | {...props} |
| 85 | /> |
| 86 | ); |
| 87 | SheetHeader.displayName = 'SheetHeader'; |
| 88 | |
| 89 | const SheetFooter = ({ |
Callers
nothing calls this directly
Tested by
no test coverage detected