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