interface IconProps { className?: string; width?: string; height?: string; color?: string; } export function HideSidebarIcon({ width = '100%', height = '100%', color = '#1976d2', }: IconProps) { return ( ); } export function ShowSidebarIcon({ width = '100%', height = '100%', color = '#1976d2', }: IconProps) { return ( ); } export function DashedAreaIcon({ className, width, height, color = '#1976d2', }: IconProps) { return ( ); }