Function
SheetFooter
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 93 | SheetHeader.displayName = "SheetHeader" |
| 94 | |
| 95 | const SheetFooter = ({ |
| 96 | className, |
| 97 | ...props |
| 98 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 99 | <div |
| 100 | className={cn( |
| 101 | "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", |
| 102 | className |
| 103 | )} |
| 104 | {...props} |
| 105 | /> |
| 106 | ) |
| 107 | SheetFooter.displayName = "SheetFooter" |
| 108 | |
| 109 | const SheetTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected