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