Skip to content

FileTextIcon

const FileTextIcon: 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/FileTextIcon.tsx:27

File Text icon component for documents and text content.

A document page with horizontal text lines, commonly used for documentation, notes, write-ups, and scribe-style personas.

Example

// Basic usage
<FileTextIcon />
// With custom size and color
<FileTextIcon size="md" color="secondary" />
// In a documentation entry
<Button icon={<FileTextIcon />}>Open Document</Button>