A deprecated custom SVG icon component representing a license/balance symbol with a central pin and two scale pans. ## Key Components ### `CustomLicenseIconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | — | Optional CSS class | | `fill` | `string` | `"#888888"` | SVG fill color | | `width` | `number` | `24` | Icon width in pixels | | `height` | `number` | `24` | Icon height in pixels | ### `CustomLicenseIcon` > **⚠️ Deprecated** — Use icons from `icons-v2-generated` instead. A functional React component rendering an inline SVG license/scales icon at a `0 0 24 24` viewBox. ## Usage Example ```typescript import { CustomLicenseIcon } from './custom-license-icon'; // Default usage // Custom styling ``` ## Migration Replace usages with the equivalent from the `icons-v2-generated` package: ```typescript // ❌ Deprecated import { CustomLicenseIcon } from './custom-license-icon'; // ✅ Preferred import { LicenseIcon } from '@/components/icons-v2-generated'; ```