Renders a Bash shell SVG icon as a React functional component. This component is **deprecated** and should be replaced with icons from the `icons-v2-generated` package. ## Key Components - **`BashIconProps`** — Interface defining optional props: `size`, `className`, and `color` - **`BashIcon`** — Deprecated React FC that renders a 24×24 viewBox SVG representing the Bash shell icon ## Usage Example ```typescript import { BashIcon } from './bash-icon' // Default usage (16px, white) // Custom size and color ``` > **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead of this component. ## Default Props | Prop | Default | Description | |------|---------|-------------| | `size` | `16` | Width and height in pixels | | `color` | `"white"` | SVG fill color | | `className` | `""` | Additional CSS classes |