@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 4.92 kB
JavaScript
// 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) {
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M213.547 488.33c0-23.7 19.449-43.17 43.083-43.17h72.668c23.676 0 43.946 19.47 43.946 44.033V763.54c8.452-2.547 18.587-5.094 30.445-7.64 16.044-4.231 27.902-18.608 27.902-35.572V379.93c0-23.7 19.45-44.033 43.946-44.033h72.667c23.676 0 43.946 19.47 43.946 44.033v315.876s17.767-7.64 35.492-15.24c13.541-5.914 21.994-18.607 21.994-33.887V269.887c0-23.7 19.449-44.034 43.124-44.034h72.668c23.676 0 43.125 19.47 43.125 44.034V580.67c62.533-45.718 126.79-100.76 177.505-166.81 15.223-19.471 19.449-44.897 10.996-68.598-92.978-267.57-385.373-409.858-652.45-316.698C77.524 121.725-64.447 414.681 28.491 682.292c10.135 30.479 23.675 59.273 39.719 87.205 12.679 22.017 36.354 34.71 61.712 32.163 13.54-.863 30.446-2.547 51.537-5.094 18.587-1.684 32.128-17.786 32.128-36.434l-.041-271.802Z",
fill: "#21325B"
}), /*#__PURE__*/_jsx("path", {
d: "M212.956 926.014c228.245 166.425 547.47 115.731 713.359-113.19C989.489 724.96 1024 619.35 1024 511.241c0-11.844-.859-23.646-1.676-35.49C836.235 755.368 491.74 886.303 212.956 926.014Z",
fill: "#979695"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const EtherscanCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-etherscan-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EtherscanCircleColorful.displayName = 'EtherscanCircleColorful';