A React SVG component that renders a file-text icon representing a document with text lines, built with customizable styling and color props. ## Key Components - **`FileTextIconProps`** - Interface extending React's SVG props for type safety - **`FileTextIcon`** - Main component function that renders the document icon SVG - **Default props** - `className` defaults to "h-6 w-6" and `color` defaults to "white" ## Usage Example ```typescript import { FileTextIcon } from "./file-text-icon" // Basic usage with defaults // Custom styling and color // With additional SVG props console.log("File clicked")} role="button" aria-label="Open document" /> ``` The icon displays a document outline with a folded corner and horizontal lines representing text content, making it perfect for file browsers, document lists, or text-related UI elements.