diff --git a/packages/emcn/src/icons/folder.tsx b/packages/emcn/src/icons/folder.tsx index 584ac90f1cb..9f0a3587492 100644 --- a/packages/emcn/src/icons/folder.tsx +++ b/packages/emcn/src/icons/folder.tsx @@ -1,26 +1,31 @@ import type { SVGProps } from 'react' /** - * Folder icon component + * Folder icon component - closed counterpart of {@link FolderOpen} + * + * The path is FolderOpen's own body outline, closed along the bottom-right, so + * the pair shares a silhouette, a box and a stroke weight. The two toggle in + * place (sidebar folder rows), which makes any divergence read as the icon + * changing size on expand. + * * @param props - SVG properties including className, fill, etc. */ export function Folder(props: SVGProps) { return ( ) }