import { type DrawingMeta } from "../../core/shared"; type DrawingSidebarProps = { open: boolean; drawings: DrawingMeta[]; activeId: string | null; activeTitle: string; onClose: () => void; onCreate: () => void; onSelect: (drawingId: string) => void; onDelete: (drawingId: string) => void; onTitleChange: (title: string) => void; onTitleSubmit: () => void; }; function DrawerIcon() { return ( ); } export function DrawingsToggle({ onClick }: { onClick: () => void }) { return ( ); } export function DrawingSidebar({ open, drawings, activeId, activeTitle, onClose, onCreate, onSelect, onDelete, onTitleChange, onTitleSubmit, }: DrawingSidebarProps) { return ( <>
> ); }