@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 3.23 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: "M500 0c276.1 0 500 223.9 500 500s-223.9 500-500 500S0 776.1 0 500 223.9 0 500 0z",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/_jsx("path", {
d: "M714.5 432.3C737.3 324.1 687 269 592.1 269c-57 0-104.4 20.9-147.2 59.8l9.5-43.7s-15.2-6.6-45.6-6.6c-33.2 0-49.4 6.6-49.4 6.6L268 714.4s13.3 6.6 46.5 6.6c30.4 0 48.4-6.6 48.4-6.6l65.8-307.7c33.2-38 78.8-60.8 120.6-60.8 60.8 0 81.6 30.4 70.3 83.6l-61.1 284.9s14.2 6.6 46.5 6.6c31.3 0 48.4-6.6 48.4-6.6l61.1-282.1z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1000 1000",
xmlSpace: "preserve",
enableBackground: "new 0 0 1000 1000"
};
/** */
export const NestCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-nest-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
NestCircleColorful.displayName = 'NestCircleColorful';