import React from 'react'; interface WhatsAppIconProps { color?: string; className?: string; size?: number; } /** @deprecated Use icons from icons-v2-generated instead. */ export function WhatsAppIcon({ className = '', size = 24 , color = 'white' }: WhatsAppIconProps) { return ( ); }