Skip to content

FolderIcon

const FolderIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/FolderIcon.tsx:27

Folder icon component for directory and organization actions.

A standard folder icon commonly used for file organization, directory navigation, and grouping content in editor interfaces.

Example

// Basic usage
<FolderIcon />
// With custom size and color
<FolderIcon size="lg" color="primary" />
// In a folder browser
<Button icon={<FolderIcon />}>Open Folder</Button>