A deprecated SVG icon component rendering the Linux (Tux) logo as a 16×16 inline SVG element. ## Key Components - **`LinuxIconProps`** — Interface extending `React.SVGProps`, allowing all standard SVG attributes to be passed through. - **`LinuxIcon`** — Functional component rendering a Linux mascot SVG with a default white fill color. > ⚠️ **Deprecated:** This component is deprecated. Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { LinuxIcon } from './linux-icon' // Basic usage with default white color // Custom color and class // Pass standard SVG props ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `color` | `string` | `'white'` | Fill color of the SVG path | | `className` | `string` | — | CSS class applied to the `` element | | `...props` | `SVGProps` | — | Any valid SVG element attribute |