export interface DrawerProps { isOpen: boolean; onClose: () => void; direction?: 'left' | 'right' | 'top' | 'bottom'; size?: 'full' | 'half' | 'third' | 'quarter'; className?: string; }