'use client'; import type * as React from 'react'; import { XIcon } from 'lucide-react'; import { Dialog as SheetPrimitive } from 'radix-ui'; import { cn } from '@spoon/ui'; const Sheet = ({ ...props }: React.ComponentProps) => ( ); const SheetTrigger = ({ ...props }: React.ComponentProps) => ( ); const SheetClose = ({ ...props }: React.ComponentProps) => ( ); const SheetPortal = ({ ...props }: React.ComponentProps) => ( ); const SheetOverlay = ({ className, ...props }: React.ComponentProps) => ( ); const SheetContent = ({ className, children, side = 'right', showCloseButton = true, ...props }: React.ComponentProps & { side?: 'top' | 'right' | 'bottom' | 'left'; showCloseButton?: boolean; }) => ( {children} {showCloseButton && ( Close )} ); const SheetHeader = ({ className, ...props }: React.ComponentProps<'div'>) => (
); const SheetFooter = ({ className, ...props }: React.ComponentProps<'div'>) => (
); const SheetTitle = ({ className, ...props }: React.ComponentProps) => ( ); const SheetDescription = ({ className, ...props }: React.ComponentProps) => ( ); export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, };