A React SVG icon component that renders an edit profile icon with a document and pencil design, extending standard SVG properties for flexible usage. ## Key Components - **EditProfileIcon**: Main functional component that renders the SVG icon - **EditProfileIconProps**: TypeScript interface extending React.SVGProps with optional className - **SVG Paths**: Two path elements creating a document with edit pencil visual design ## Usage Example ```typescript import { EditProfileIcon } from './edit-profile-icon'; // Basic usage // With custom styling // With additional SVG properties // In a button ``` The component uses a 24x24 viewBox with white (#FAFAFA) fill color and supports all standard SVG properties through prop spreading, making it highly customizable for different UI contexts.