-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-donate.tsx
More file actions
26 lines (23 loc) · 3.22 KB
/
Copy pathicon-donate.tsx
File metadata and controls
26 lines (23 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { forwardRef } from 'react';
import type { IconProps } from './types';
const IconDonate = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
const { size = '1em', color = 'currentColor', className, style, ...rest } = props;
return (
<svg
ref={ref}
viewBox="0 0 1024 1024"
width={size}
height={size}
fill={color}
className={className}
style={{ verticalAlign: "middle", ...style }}
{...rest}
>
<g transform="translate(0, 896) scale(1, -1)">
<path d="M576 828c-3.488-2.048-26.88-12.8-55.008-23.008-28.128-10.176-62.752-22.176-96.992-33.984-34.24-11.84-68.832-22.816-96-32.992-13.568-5.12-25.184-9.728-35.008-14.016-9.792-4.288-16.16-6.592-25.984-15.008-11.648-9.984-19.616-21.12-32-37.984-12.384-16.896-26.592-37.76-40-59.008a749.12 749.12 0 0 1-36-63.008c-9.792-19.648-18.016-33.12-18.016-56 0-10.912 1.472-12.064 3.008-17.984 1.536-5.952 3.424-13.696 6.016-22.016 5.152-16.64 12.16-37.632 20.992-60.992 15.744-41.792 36.16-89.376 58.976-128.992C207.072 229.53599999999994 192 189.312 192 144c0-113.792 94.208-208 208-208s208 94.208 208 208c0 48.064-17.824 92.992-47.008 128.992 11.36 4.672 23.424 9.632 38.016 16 36.736 16.064 81.312 39.584 121.984 82.016a32 32 0 0 1 0 0.992c42.528 46.4 61.024 109.6 80 164.992 19.008 55.392 39.232 100.8 65.024 118.016l-36 52.992c-51.04-34.016-70.592-93.376-90.016-150.016-19.296-56.256-38.4-111.456-66.016-141.984-32.928-34.368-68.16-53.664-100.992-68-32.544-14.208-60.704-21.056-85.984-40.992-0.224-0.192-0.8 0.16-0.992 0-18.464-14.752-40.672-36.576-65.024-54.016-24.32-17.408-49.824-28.992-68.992-28.992-17.76 0-43.456 19.392-44.992 38.016-1.408 14.016 3.136 27.744 15.008 42.976 11.84 15.264 30.464 30.24 49.984 43.008 39.04 25.568 80.992 40.992 80.992 40.992a32 32 0 0 1 14.016 11.008s17.888 24 37.984 50.016c20.128 26.016 46.24 56.768 50.016 59.968a32 32 0 0 1-29.024 55.04s-21.472-5.632-46.976-7.04c-25.504-1.376-50.816 4.544-60 13.024a32 32 0 0 1-51.008-8.992s-33.856-55.776-71.008-64a32 32 0 0 1-19.008-49.024s11.456-15.104 17.024-53.984a32 32 0 0 1 8.992-18.016l2.016-1.984c-11.84-9.952-24.256-18.464-34.016-31.008-2.432-3.104-4.768-6.656-7.008-10.016a1071.2 1071.2 0 0 0-54.016 138.016c-2.336 7.584-3.84 13.664-4.96 18.016-0.32 1.088-0.864 1.888-1.024 2.976v0.992c0.384-1.92 3.328 11.616 11.008 27.008 8.32 16.64 20.416 37.056 32.992 56.992 12.608 19.968 25.696 39.584 37.024 55.04 10.88 14.816 21.504 26.368 21.984 26.976-0.064 0.032 0.768-0.224 0.992 0 2.048 1.024 6.048 3.264 10.016 4.992 7.936 3.52 19.008 8.16 32 13.024 25.92 9.696 58.816 21.184 92.992 32.96 34.176 11.84 69.024 23.52 98.016 34.016 28.96 10.496 50.272 17.856 65.984 27.008l-32 56z m-168-320.992c17.28-6.912 33.952-11.648 51.008-12-1.76-2.24-3.264-3.744-4.992-6.016a2386.016 2386.016 0 0 1-34.016-44.992c-6.72-2.56-32.544-15.904-62.016-32-2.016 2.432-2.56 3.456-3.968 4.992-4.288 18.08-6.272 22.784-11.008 32.992 35.008 17.92 52.864 38.144 64.992 57.024z m98.016-267.008a142.976 142.976 0 0 0 37.984-96c0-78.208-65.792-144-144-144S256 65.79200000000003 256 144c0 19.744 4.032 38.304 11.008 55.008A112.576 112.576 0 0 1 352 160c41.6 0 76.736 20.032 106.016 40.992 18.848 13.504 34.56 27.264 48 39.008z" />
</g>
</svg>
);
});
IconDonate.displayName = 'IconDonate';
export { IconDonate };