A React SVG icon component that renders a file document with a checkmark, typically used to indicate completed, verified, or approved file states. ## Key Components - **`FileCheckIconProps`** - Interface extending `React.SVGProps` for type-safe prop passing - **`FileCheckIcon`** - Main component function that renders the SVG icon with customizable styling ## Usage Example ```typescript import { FileCheckIcon } from './file-check-icon' // Basic usage with default styling // Custom size and color // With additional SVG props console.log('File verified!')} style={{ cursor: 'pointer' }} /> // In a status indicator
Document verified
``` The component provides sensible defaults (24x24px, white color) while allowing full customization through className, color props, and standard SVG attributes. The icon features a document outline with a folded corner and an internal checkmark symbol.