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