A deprecated custom SVG fork icon React component with configurable dimensions, color fill, and className support. ## Key Components ### `CustomForkIconProps` Interface defining the component's optional props: | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | — | CSS class name | | `fill` | `string` | `"#888888"` | SVG fill color | | `width` | `number` | `24` | Icon width in pixels | | `height` | `number` | `24` | Icon height in pixels | ### `CustomForkIcon` ⚠️ Deprecated Renders a 24×24 viewBox SVG depicting a git-fork shape with three circular nodes and connecting paths. Additional SVG props are spread onto the root `` element. > **Deprecated:** Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript // Basic usage // Custom color and size // With className for Tailwind styling ``` ## Migration Replace usages with the equivalent from the generated icon library: ```typescript // ❌ Deprecated import { CustomForkIcon } from './custom-fork-icon' // ✅ Preferred import { ForkIcon } from '@/components/icons-v2-generated' ```