26 lines
968 B
TypeScript
26 lines
968 B
TypeScript
import { SVGProps } from 'react';
|
|
|
|
const Illustration = (props: SVGProps<SVGSVGElement>) => {
|
|
return (
|
|
<svg
|
|
width={486}
|
|
height={534}
|
|
viewBox="0 0 486 534"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
>
|
|
<circle cx={167} cy={60} r={60} fill="#D7F484" />
|
|
<circle cx={37.5} cy={215.5} r={37.5} fill="currentColor" />
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M486 144.469c-38.145-31.86-87.255-51.033-140.842-51.033-121.415 0-219.842 98.427-219.842 219.842 0 14.167 1.34 28.02 3.9 41.441 47.414-86.154 91.678-142.17 146.717-170.767 56.069-29.132 121.816-29.08 210.067-6.68v-32.803zm0 48.288v289.33c-38.145 31.86-87.255 51.033-140.842 51.033-100.321 0-184.947-67.197-211.325-159.037l1.502.805c49.937-93.22 94.046-149.844 147.514-177.625 52.014-27.025 114.411-27.498 203.151-4.506z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default Illustration;
|