@ant-design/web3-icons
Version:
A collection of Web3 icons.
78 lines • 5.53 kB
JavaScript
import { useUniqueInlineId } from '@inline-svg-unique-id/react';
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
import * as React from 'react';
import AntdIcon from '@ant-design/icons';
import { ConfigProvider } from 'antd';
import classnames from 'classnames';
import { eraseDefaultProps } from "../utils";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
const _id2 = useUniqueInlineId();
const _id = useUniqueInlineId();
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsxs("linearGradient", {
id: _id,
gradientUnits: "userSpaceOnUse",
x1: "0",
y1: "500",
x2: "1000",
y2: "500",
gradientTransform: "matrix(1 0 0 -1 0 1000)",
children: [/*#__PURE__*/_jsx("stop", {
offset: "0",
stopColor: "#FFA50D"
}), /*#__PURE__*/_jsx("stop", {
offset: "1",
stopColor: "#FE5413"
})]
}), /*#__PURE__*/_jsx("path", {
d: "M500 0c276.1 0 500 223.9 500 500s-223.9 500-500 500S0 776.1 0 500 223.9 0 500 0z",
fill: `url(#${_id})`
}), /*#__PURE__*/_jsx("path", {
d: "M692 347c-6.3 7.5-5.9 24.1-16 19 0 0-70.3-26.9-27-106 11.7-18.3 23.8-19.5 22-64 10.8 16.4 46.2 49.3 49 101 2.8 34.5-17.8 39.1-28 50z",
fill: "#FFF"
}), /*#__PURE__*/_jsx("path", {
d: "M636 470c17.3-5.8 45.3-15 47-74 26.7 40.9 117.3 98.3 74 274-17.6 68.5-83.2 101.8-145 127-38.6 16.4-78 43.8-94 85 0 0-292.1-36.9-283-327 7.3-150.5 148.3-208 208-318 31.8-69.4 21-139 21-139s186 115.7 102 294c-27.3 63 37.9 84.3 70 78z",
fill: "#FFF"
}), /*#__PURE__*/_jsxs("linearGradient", {
id: _id2,
gradientUnits: "userSpaceOnUse",
x1: "349",
y1: "622",
x2: "652",
y2: "622",
children: [/*#__PURE__*/_jsx("stop", {
offset: "0",
stopColor: "#FFA50D"
}), /*#__PURE__*/_jsx("stop", {
offset: "1",
stopColor: "#FE5413"
})]
}), /*#__PURE__*/_jsx("path", {
fill: `url(#${_id2})`,
d: "M349 522v97h103v103h97V619h103v-97z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1000 1000",
xmlSpace: "preserve"
};
/** */
export const TfuelCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tfuel-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TfuelCircleColorful.displayName = 'TfuelCircleColorful';