@ant-design/web3-icons
Version:
A collection of Web3 icons.
54 lines • 3.89 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: "41.3",
cy: "41.3",
r: "41.3"
}), /*#__PURE__*/_jsx("path", {
d: "M13.4 55.2c-1.9-4-2.9-8.4-2.9-13.1C10.5 24.9 24.4 11 41.6 11c9.6 0 18.1 4.3 23.8 11.1l3.4-2.9C62.3 11.4 52.5 6.5 41.6 6.5 21.9 6.5 6 22.4 6 42c0 5.4 1.2 10.5 3.3 15l4.1-1.8z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M41.6 63.1C30 63.1 20.5 53.7 20.5 42c0-11.6 9.4-21.1 21.1-21.1 6.5 0 12.3 2.9 16.2 7.5l3.4-2.9c-4.7-5.6-11.7-9.1-19.6-9.1C27.5 16.5 16 27.9 16 42c0 14.1 11.4 25.5 25.5 25.5v-4.4h.1z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M49.2 48.4c-1.8 2.2-4.6 3.6-7.7 3.6-5.5 0-10-4.5-10-10s4.5-10 10-10c3.1 0 5.8 1.4 7.7 3.6l3.8-3.2c-2.8-3.3-6.9-5.4-11.5-5.4-8.3 0-15 6.7-15 15s6.7 15 15 15c4.2 0 8-1.7 10.8-4.6l-3.1-4z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 82.6 82.6",
xmlSpace: "preserve",
enableBackground: "new 0 0 82.6 82.6"
};
/** */
export const CfgCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-cfg-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CfgCircleColorful.displayName = 'CfgCircleColorful';