-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhatsapp.tsx
23 lines (20 loc) · 2.91 KB
/
Whatsapp.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from "react";
type SVGProps = React.SVGProps<SVGSVGElement>;
const Whatsapp: React.FC<SVGProps> = (props) => {
return (
<svg
width="40"
height="40"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M5.25399 16.494L5.97799 16.917C7.19888 17.6292 8.58756 18.003 10.001 18C11.5832 18 13.13 17.5308 14.4456 16.6518C15.7611 15.7727 16.7865 14.5233 17.392 13.0615C17.9975 11.5997 18.156 9.99113 17.8473 8.43928C17.5386 6.88743 16.7767 5.46197 15.6578 4.34315C14.539 3.22433 13.1136 2.4624 11.5617 2.15372C10.0099 1.84504 8.40133 2.00346 6.93952 2.60896C5.47772 3.21447 4.22829 4.23984 3.34924 5.55544C2.47018 6.87103 2.00099 8.41775 2.00099 10C1.99807 11.4139 2.37226 12.8029 3.08499 14.024L3.50699 14.748L2.85399 17.149L5.25399 16.494ZM0.00499202 20L1.35699 15.032C0.46595 13.5049 -0.00210506 11.768 0.000991831 10C0.000991831 4.477 4.47799 0 10.001 0C15.524 0 20.001 4.477 20.001 10C20.001 15.523 15.524 20 10.001 20C8.23375 20.003 6.49757 19.5353 4.97099 18.645L0.00499202 20ZM6.39199 5.308C6.52666 5.29867 6.66099 5.29733 6.79499 5.304C6.84899 5.308 6.90299 5.31333 6.95699 5.32C7.11599 5.338 7.29099 5.435 7.34999 5.569C7.64799 6.24567 7.93733 6.92567 8.21799 7.609C8.27999 7.761 8.24299 7.956 8.12499 8.146C8.06499 8.243 7.97099 8.379 7.86199 8.518C7.74899 8.663 7.50599 8.929 7.50599 8.929C7.50599 8.929 7.40699 9.047 7.44499 9.194C7.45899 9.25 7.50499 9.331 7.54699 9.399L7.60599 9.494C7.86199 9.921 8.20599 10.354 8.62599 10.762C8.74599 10.878 8.86299 10.997 8.98899 11.108C9.45699 11.521 9.98699 11.858 10.559 12.108L10.564 12.11C10.649 12.147 10.692 12.167 10.816 12.22C10.878 12.246 10.9417 12.268 11.007 12.286C11.031 12.2927 11.0553 12.2963 11.08 12.297C11.137 12.2992 11.1937 12.2874 11.2451 12.2626C11.2965 12.2379 11.3411 12.2009 11.375 12.155C12.098 11.279 12.165 11.222 12.17 11.222V11.224C12.2202 11.177 12.28 11.1413 12.3452 11.1194C12.4104 11.0975 12.4796 11.0898 12.548 11.097C12.6093 11.0997 12.6683 11.113 12.725 11.137C13.256 11.38 14.125 11.759 14.125 11.759L14.707 12.02C14.805 12.067 14.894 12.178 14.897 12.285C14.901 12.352 14.907 12.46 14.884 12.658C14.852 12.917 14.774 13.228 14.696 13.391C14.6419 13.5019 14.5711 13.6037 14.486 13.693C14.385 13.7989 14.2745 13.8953 14.156 13.981C14.0733 14.0423 14.0317 14.0723 14.031 14.071C13.9066 14.1499 13.7788 14.2233 13.648 14.291C13.3904 14.4275 13.1061 14.506 12.815 14.521C12.63 14.531 12.445 14.545 12.259 14.535C12.251 14.535 11.691 14.448 11.691 14.448C10.2693 14.074 8.95442 13.3734 7.85099 12.402C7.62499 12.203 7.41499 11.989 7.20099 11.776C6.31299 10.891 5.63999 9.936 5.23099 9.034C5.02349 8.59122 4.91108 8.10988 4.90099 7.621C4.89723 7.01375 5.09605 6.42257 5.46599 5.941C5.53899 5.847 5.60799 5.749 5.72699 5.636C5.85299 5.516 5.93399 5.452 6.02099 5.408C6.13703 5.351 6.26302 5.31704 6.39199 5.308Z"
fill="currentColor"
/>
</svg>
);
};
export default Whatsapp;