@ant-design/web3-icons
Version:
A collection of Web3 icons.
73 lines • 4.98 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("rect", {
width: "1024",
height: "1024",
rx: "512",
fill: "#587EF2",
fillRule: "nonzero"
}), /*#__PURE__*/_jsxs("g", {
children: [/*#__PURE__*/_jsx("circle", {
cx: "512",
cy: "512",
r: "512"
}), /*#__PURE__*/_jsx("path", {
fill: "#BDCCFB",
fillRule: "nonzero",
d: "m511.962 182.857-4.527 15.002v435.273l4.527 4.407L719.11 518.107z"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "m511.915 182.857-207.153 335.25L511.915 637.54v-211.27z"
}), /*#__PURE__*/_jsx("path", {
fill: "#BDCCFB",
fillRule: "nonzero",
d: "m511.962 675.791-2.551 3.036v155.05l2.551 7.267 207.275-284.722z"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M511.915 841.144V675.791L304.762 556.422z"
}), /*#__PURE__*/_jsx("path", {
fill: "#7A98F5",
fillRule: "nonzero",
d: "m511.887 637.531 207.148-119.43-207.148-91.84z"
}), /*#__PURE__*/_jsx("path", {
fill: "#BDCCFB",
fillRule: "nonzero",
d: "m304.762 518.101 207.153 119.43v-211.27z"
})]
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const EthereumCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ethereum-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EthereumCircleColorful.displayName = 'EthereumCircleColorful';