export function WhatsAppIcon({ size = 24, className = "" }: { size?: number; className?: string }) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 32 32"
      width={size}
      height={size}
      className={className}
      fill="currentColor"
      aria-hidden="true"
    >
      <path d="M16.001 3C9.373 3 4 8.373 4 15c0 2.39.7 4.61 1.902 6.487L4 29l7.7-1.86A11.95 11.95 0 0 0 16 27c6.627 0 12-5.373 12-12S22.628 3 16.001 3Zm0 21.6a9.55 9.55 0 0 1-4.872-1.34l-.35-.21-4.57 1.103 1.118-4.45-.227-.36A9.6 9.6 0 1 1 25.6 15c0 5.302-4.298 9.6-9.6 9.6Zm5.27-7.182c-.288-.144-1.706-.842-1.971-.939-.265-.097-.458-.144-.652.144-.193.289-.748.94-.917 1.133-.169.193-.337.217-.626.072-.289-.144-1.22-.45-2.323-1.434-.859-.766-1.438-1.713-1.607-2.002-.169-.289-.018-.445.127-.589.131-.13.289-.337.434-.506.144-.169.193-.289.289-.482.097-.193.048-.361-.024-.506-.072-.144-.652-1.572-.894-2.154-.236-.566-.476-.49-.652-.499l-.555-.01a1.07 1.07 0 0 0-.772.361c-.265.289-1.013.99-1.013 2.418 0 1.428 1.037 2.807 1.181 3 .144.193 2.04 3.114 4.946 4.366.692.299 1.231.477 1.652.611.694.221 1.325.19 1.825.115.557-.083 1.706-.697 1.948-1.371.241-.674.241-1.252.169-1.371-.072-.12-.265-.193-.553-.337Z" />
    </svg>
  );
}
