A deprecated React SVG icon component rendering a sparkles/magic wand symbol, intended to be replaced by the `icons-v2-generated` icon set.
## Key Components
- **`SparklesIcon`** — A functional React component that renders a 24×24 viewBox SVG sparkles icon.
- **`SparklesIconProps`** — Interface defining optional props:
- `className` — CSS class string (default: `''`)
- `color` — Fill/stroke color (default: `'currentColor'`)
- `size` — Width and height in pixels (default: `20`)
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { SparklesIcon } from './sparkles-icon'
// Default usage
// Custom size and color
// Inheriting parent text color via currentColor
```