import React, { type ComponentPropsWithRef } from 'react'; import { clsx } from 'clsx'; export type DockSidebarProps = ComponentPropsWithRef<'div'> & { /** * For standalone mode - controls visibility with sliding animation */ open?: boolean; /** * Use fixed positioning (for standalone mode) */ fixed?: boolean; }; export const DockSidebar = ({ children, className, open = true, fixed = false }: DockSidebarProps) => { return ( ); };