A deprecated SVG icon component rendering a hand holding a dollar sign, intended for financial or payment-related UI contexts.
## Key Components
### `HandDollarIconProps`
| Prop | Type | Default |
|------|------|---------|
| `className` | `string` | `""` |
| `width` | `number` | `24` |
| `height` | `number` | `24` |
| `color` | `string` | `var(--ods-flamingo-cyan-base)` |
### `HandDollarIcon`
A functional React component that renders a 24×24 SVG hand-dollar icon. Stroke color is driven by the `color` prop, defaulting to the Flamingo design system's cyan token.
> **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { HandDollarIcon } from './hand-dollar-icon';
// Default usage
// Custom size and color
```