@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 3.21 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("circle", {
cx: "1250",
cy: "1250",
r: "1250",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#c1ff3c"
}), /*#__PURE__*/_jsx("path", {
d: "M2034 1163V989h-174V640h-174v349h-348v871h174v-697h174v697h348v-174h-174v-523h174zm-958 436c0 48-39 87-87 87H641v-349h348c48 0 87 39 87 87v175zm-87-349zM641 814h261c48 0 87 39 87 87v174c0 48-39 87-87 87H641V813v1zm465 415v-24c36-32 58-78 58-130V864c0-124-101-225-225-225H467v1220h552c128 0 232-104 232-232v-203c0-90-59-169-145-195z",
fillRule: "evenodd",
clipRule: "evenodd"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
export const BitCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bit-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BitCircleColorful.displayName = 'BitCircleColorful';