A React component that renders an SVG icon representing reclaim profits functionality, typically used in financial or business applications. ## Key Components - **ReclaimProfitsIcon**: Default export functional component that renders a custom SVG icon - **Props Interface**: Extends `React.SVGProps` with optional `className` prop - **SVG Elements**: Two path elements creating a stylized icon with golden yellow fill (`#FFC008`) ## Usage Example ```typescript import { ReclaimProfitsIcon } from './reclaim-profits-icon'; // Basic usage // With custom styling // With custom size // In a button ``` The icon has a fixed 24x24 viewBox and uses a golden yellow color scheme. It accepts all standard SVG props through prop spreading, making it highly customizable for different use cases while maintaining consistent visual appearance.