A deprecated SVG clock/time icon React component with configurable dimensions, color, and className props. ## Key Components ### `CustomTimeIconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | — | CSS class for the SVG element | | `fill` | `string` | `"#888888"` | Icon fill color | | `width` | `number` | `24` | Icon width in pixels | | `height` | `number` | `24` | Icon height in pixels | ### `CustomTimeIcon` Renders a 24×24 SVG clock icon composed of two paths: a circular outline and a clock-hand indicator. > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { CustomTimeIcon } from './custom-time-icon'; // Default usage // Custom color and size // With Tailwind class ```