@jstnmthw/react-fluentui-emoji
Version:
Fluent Emoji SVG icons for UI react development.
106 lines (105 loc) • 4.38 kB
JSX
const React = require("react");
const HeavyDollarSignIcon = ({ title, titleId, ...props }) => (
<svg
width="1em"
height="1em"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-labelledby={titleId}
{...props}
>
{title ? <title id={titleId}>{title}</title> : null}
<g filter="url(#filter0_iii_18590_1877)">
<path
d="M22.8631 20.2549C22.8631 17.4894 20.9531 13.7949 15.9731 13.7949C13.1231 13.7949 12.7331 12.0549 12.7031 11.4049C12.7331 10.5949 13.1031 8.71495 15.9331 8.71495C18.8731 8.71495 19.2131 10.7849 19.2431 11.4249C19.2731 12.4149 20.1231 13.2649 21.0931 13.1749C22.0931 13.1549 22.8831 12.3249 22.8531 11.3249C22.8049 9.23655 21.4694 6.31456 18.1511 5.39357C17.9217 5.32988 17.756 5.12366 17.76 4.88556L17.7831 3.52495C17.7931 2.52495 16.9931 1.70495 15.9931 1.69495C15.9831 1.69495 15.9831 1.69495 15.9731 1.69495C14.9831 1.69495 14.1731 2.49495 14.1631 3.48495L14.1475 4.88426C14.1449 5.11842 13.9789 5.3177 13.7528 5.37861C10.4026 6.28114 9.10233 9.24646 9.08306 11.3949C9.12306 13.8149 10.9931 17.4149 15.9731 17.4149C18.7831 17.4149 19.2431 19.4431 19.2431 20.2149C19.2431 20.7327 18.7031 22.4949 15.9731 22.4949C13.2031 22.4949 12.7631 20.6349 12.6931 20.0849C12.6031 19.0849 11.7431 18.3649 10.7231 18.4449C9.72306 18.5349 8.99306 19.4149 9.08306 20.4049C9.2275 22.0515 10.4289 24.9311 13.7585 25.83C13.9865 25.8916 14.1531 26.0939 14.1531 26.33V27.9949C14.1531 28.9949 14.9631 29.8049 15.9631 29.8049C16.9631 29.8049 17.7831 28.9949 17.7831 27.9949V26.3311C17.7831 26.0945 17.9495 25.8923 18.1772 25.8279C20.5932 25.1447 22.8631 22.8782 22.8631 20.2549Z"
fill="url(#paint0_linear_18590_1877)"
/>
</g>
<defs>
<filter
id="filter0_iii_18590_1877"
x={8.82556}
y={1.44495}
width={14.2875}
height={28.61}
filterUnits="userSpaceOnUse"
colorInterpolationFilters="sRGB"
>
<feFlood floodOpacity={0} result="BackgroundImageFix" />
<feBlend
mode="normal"
in="SourceGraphic"
in2="BackgroundImageFix"
result="shape"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={-0.25} dy={0.25} />
<feGaussianBlur stdDeviation={0.25} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.505882 0 0 0 0 0.976471 0 0 0 0 0.694118 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="shape"
result="effect1_innerShadow_18590_1877"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={0.25} />
<feGaussianBlur stdDeviation={0.375} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.239216 0 0 0 0 0.701961 0 0 0 0 0.411765 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect1_innerShadow_18590_1877"
result="effect2_innerShadow_18590_1877"
/>
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dx={0.25} dy={-0.25} />
<feGaussianBlur stdDeviation={0.375} />
<feComposite in2="hardAlpha" operator="arithmetic" k2={-1} k3={1} />
<feColorMatrix
type="matrix"
values="0 0 0 0 0.168627 0 0 0 0 0.576471 0 0 0 0 0.360784 0 0 0 1 0"
/>
<feBlend
mode="normal"
in2="effect2_innerShadow_18590_1877"
result="effect3_innerShadow_18590_1877"
/>
</filter>
<linearGradient
id="paint0_linear_18590_1877"
x1={15.9693}
y1={1.69495}
x2={15.9693}
y2={29.8049}
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#64DE9D" />
<stop offset={1} stopColor="#51C284" />
</linearGradient>
</defs>
</svg>
);
module.exports = HeavyDollarSignIcon;