| 50 | ); |
| 51 | |
| 52 | interface SheetContentProps |
| 53 | extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, |
| 54 | VariantProps<typeof sheetVariants> {} |
| 55 | |
| 56 | const SheetContent = React.forwardRef<React.ElementRef<typeof SheetPrimitive.Content>, SheetContentProps>( |
| 57 | ({ side = "right", className, children, ...props }, ref) => ( |
nothing calls this directly
no outgoing calls
no test coverage detected