@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 2.17 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: "60",
cy: "60",
r: "60",
fill: "#EDF0F4"
}), /*#__PURE__*/_jsx("path", {
fill: "#1A1A1A",
d: "m34.701 76.012 25.712-25.711 7.825 7.825-17.886 17.886 10.06 10.061L78.3 68.187l7.825 7.825-25.711 25.712L34.7 76.012Z"
}), /*#__PURE__*/_jsx("path", {
fill: "#57A0D6",
d: "M27 52.288v15.9l33.288-33.29 33.289 33.29v-15.9L60.288 19 27 52.288Z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 120 120"
};
/** */
export const ConfluxCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-conflux-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ConfluxCircleColorful.displayName = 'ConfluxCircleColorful';