A deprecated SVG icon component that renders the WhatsApp logo as an inline SVG element. ## Key Components **`WhatsAppIcon`** — React functional component accepting: | Prop | Type | Default | Description | |------|------|---------|-------------| | `color` | `string` | `'white'` | SVG fill color | | `size` | `number` | `24` | Width and height in pixels | | `className` | `string` | `''` | Additional CSS classes | > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { WhatsAppIcon } from './whatsapp-icon'; // Default white icon // Custom color and size // Inside a button ``` ## Migration Replace usages with the equivalent from the `icons-v2-generated` package: ```typescript // ❌ Deprecated import { WhatsAppIcon } from './whatsapp-icon'; // ✅ Preferred import { WhatsAppIcon } from '@/components/icons-v2-generated'; ```