corp/src/components/Yidian/Ellipse9Icon3.tsx

13 lines
1.1 KiB
TypeScript

import { memo, SVGProps } from 'react';
const Ellipse9Icon3 = (props: SVGProps<SVGSVGElement>) => (
<svg preserveAspectRatio='none' viewBox='0 0 180 180' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
<path
d='M90 0C107.192 2.05017e-07 124.025 4.92429 138.507 14.1903C152.988 23.4564 164.513 36.6764 171.717 52.2865C178.921 67.8966 181.504 85.2436 179.159 102.275C176.814 119.307 169.64 135.311 158.485 148.393C147.331 161.476 132.662 171.089 116.215 176.097C99.7686 181.105 82.2315 181.297 65.6788 176.651C49.1261 172.005 34.2504 162.716 22.8116 149.881C11.3728 137.046 3.84948 121.204 1.13167 104.227L27.7922 99.9592C29.6946 111.843 34.961 122.932 42.9681 131.917C50.9753 140.901 61.3883 147.404 72.9752 150.656C84.5621 153.908 96.838 153.774 108.351 150.268C119.864 146.763 130.131 140.033 137.94 130.875C145.748 121.717 150.77 110.515 152.411 98.5927C154.053 86.6705 152.245 74.5276 147.202 63.6006C142.159 52.6735 134.092 43.4195 123.955 36.9332C113.818 30.447 102.035 27 90 27L90 0Z'
fill='#3BB346'
/>
</svg>
);
const Memo = memo(Ellipse9Icon3);
export { Memo as Ellipse9Icon3 };