@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 2.79 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: "M305.22 287A109.22 109.22 0 1 1 196 396.22 109.22 109.22 0 0 1 305.22 287Z",
transform: "translate(-196 -287)",
fill: "#1e9ada",
fillRule: "evenodd"
}), /*#__PURE__*/_jsx("path", {
d: "M280.84 348c-27.09 41.55-43.73 99.25-50.22 118.85-3.65-37 15.62-87.36 29.73-117.13-6.49.3-41.09 2.74-60.26 22.55 0 0 10.35-31.8 70.11-41.45l.2-.41c46.77-68.37 81.87-27.53 81.87-27.53-21.31-3.56-39.87 7.11-55.7 24.48 7.71-.3 57.63-.91 72 38.6 0 0-28.92-20.72-87.76-18Zm33.79 47.64a21.74 21.74 0 1 0 21.71 21.74 21.69 21.69 0 0 0-21.71-21.74Z",
transform: "translate(-196 -287)",
fill: "#fefefe"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 218.44 218.44"
};
/** */
export const FsnCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-fsn-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FsnCircleColorful.displayName = 'FsnCircleColorful';