A deprecated React SVG component that renders a 16×16 hamburger (three horizontal lines) menu icon.
## Key Components
### `HamburgerIcon`
> ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead.
A functional React component rendering an inline SVG hamburger icon with three horizontal bars.
**Props (`HamburgerIconProps`):**
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `width` | `number` | `16` | SVG width in pixels |
| `height` | `number` | `16` | SVG height in pixels |
| `className` | `string` | `''` | Additional CSS classes |
## Usage Example
```typescript
import { HamburgerIcon } from './hamburger-icon';
// Basic usage
// Custom size with Tailwind class
```
## Notes
- Renders a static `16×16` viewBox SVG with fill color hardcoded to `#FAFAFA` (near-white) — not themeable via props
- Size is adjustable via `width`/`height` props, but color requires a CSS override or direct modification
- Superseded by the `icons-v2-generated` icon library; migrate usages to the newer package to stay current with the Flamingo icon system