@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 5.2 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: "M141.73 283.46c-19.13 0-37.69-3.75-55.17-11.14-16.88-7.14-32.03-17.36-45.05-30.37-13.01-13.01-23.23-28.17-30.37-45.05C3.75 179.42 0 160.86 0 141.73s3.75-37.69 11.14-55.17c7.14-16.88 17.36-32.03 30.37-45.05C54.53 28.5 69.68 18.28 86.56 11.14 104.04 3.75 122.6 0 141.73 0s37.69 3.75 55.17 11.14c16.88 7.14 32.03 17.36 45.05 30.37 13.01 13.01 23.23 28.17 30.37 45.05 7.39 17.48 11.14 36.04 11.14 55.17s-3.75 37.69-11.14 55.17c-7.14 16.88-17.36 32.03-30.37 45.05-13.01 13.01-28.17 23.23-45.05 30.37-17.48 7.4-36.04 11.14-55.17 11.14z",
fill: "#fff"
}), /*#__PURE__*/_jsx("circle", {
cx: "141.73",
cy: "141.73",
r: "134.22"
}), /*#__PURE__*/_jsx("path", {
d: "M196.24 174.3c0-12.41-5.16-22.6-15.33-30.31-7.52-5.7-18.03-10.37-35.08-15.61-30.69-9.43-30.69-14.86-30.69-19.23 0-6.04 8.94-14.41 25.71-14.41 9.93 0 26.59 2.5 26.59 19.26h27.92c0-7.9-1.77-15.27-5.12-21.7l22.4-22.4-19.74-19.74L170.07 73c-8.28-4.06-18.19-6.17-29.21-6.17-10.27 0-19.71 1.98-27.85 5.79L90.56 50.17 70.82 69.91l21.3 21.3c-3.18 5.56-4.89 11.7-4.89 17.95 0 12.41 5.16 22.6 15.33 30.31 7.52 5.7 18 10.36 35.05 15.6 30.69 9.42 30.71 14.87 30.71 19.24 0 6.04-8.94 14.41-25.71 14.41-9.93 0-26.59-2.5-26.59-19.26H88.1c0 7.93 1.78 15.32 5.15 21.77l-22.44 22.44 19.74 19.74 22.91-22.91c8.27 4.04 18.15 6.14 29.14 6.14 10.24 0 19.65-1.97 27.77-5.75l22.53 22.53 19.74-19.74-21.34-21.34c3.21-5.6 4.94-11.75 4.94-18.04z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 283.46 283.46",
xmlSpace: "preserve",
enableBackground: "new 0 0 283.46 283.46"
};
/** */
export const FxsCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-fxs-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FxsCircleColorful.displayName = 'FxsCircleColorful';