A deprecated React SVG icon component rendering a dashboard/gauge icon, intended to be replaced by the `icons-v2-generated` icon set. ## Key Components - **`DashboardIconProps`** — Interface accepting optional `className`, `size` (default `20`), and `color` (default `'white'`) props - **`DashboardIcon`** — Named export rendering a 24×24 SVG gauge/speedometer icon > ⚠️ **Deprecated:** This component is marked `@deprecated`. Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { DashboardIcon } from './dashboard-icon' // Default usage // Custom color and size ``` ## Notes - The `size` prop is accepted but **not applied** to the SVG — the rendered output is always `24×24`. If size control is needed, apply it via `className` with CSS or migrate to `icons-v2-generated`. - The `className` prop is also accepted but **not forwarded** to the SVG element.