'use client'; import type * as React from 'react'; import { Drawer as DrawerPrimitive } from 'vaul'; import { cn } from '@spoon/ui'; const Drawer = ({ ...props }: React.ComponentProps) => ( ); const DrawerTrigger = ({ ...props }: React.ComponentProps) => ( ); const DrawerPortal = ({ ...props }: React.ComponentProps) => ( ); const DrawerClose = ({ ...props }: React.ComponentProps) => ( ); const DrawerOverlay = ({ className, ...props }: React.ComponentProps) => ( ); const DrawerContent = ({ className, children, ...props }: React.ComponentProps) => (
{children} ); const DrawerHeader = ({ className, ...props }: React.ComponentProps<'div'>) => (
); const DrawerFooter = ({ className, ...props }: React.ComponentProps<'div'>) => (
); const DrawerTitle = ({ className, ...props }: React.ComponentProps) => ( ); const DrawerDescription = ({ className, ...props }: React.ComponentProps) => ( ); export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, };