27 lines
784 B
TypeScript
27 lines
784 B
TypeScript
import { type SVGProps } from 'react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
export function IconWhatsapp({ className, ...props }: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
role='img'
|
|
viewBox='0 0 24 24'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
width='24'
|
|
height='24'
|
|
className={cn('[&>path]:stroke-current', className)}
|
|
fill='none'
|
|
stroke='currentColor'
|
|
strokeWidth='2'
|
|
strokeLinecap='round'
|
|
strokeLinejoin='round'
|
|
{...props}
|
|
>
|
|
<title>WhatsApp</title>
|
|
<path strokeWidth='0' d='M0 0h24v24H0z' fill='none' />
|
|
<path d='M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9' />
|
|
<path d='M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1' />
|
|
</svg>
|
|
)
|
|
}
|