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