A deprecated React SVG icon component rendering a "coins" graphic with two overlapping circles.
> **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead.
## Key Components
- **`CoinsIcon`** — Functional React component rendering an inline SVG coins icon
- **`CoinsIconProps`** — Interface for component props
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `color` | `string` | `'white'` | Stroke color of the SVG paths |
| `className` | `string` | `''` | CSS class for the SVG element |
| `width` | `number` | `20` | SVG width in pixels |
| `height` | `number` | `20` | SVG height in pixels |
## Usage Example
```typescript
import { CoinsIcon } from './coins-icon';
// Basic usage
// Custom size and color
```