@ant-design/web3-icons
Version:
A collection of Web3 icons.
41 lines • 1.93 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: "1250",
cy: "1250",
r: "1250",
fill: "#181818"
}), /*#__PURE__*/_jsx("path", {
fill: "#f6d30c",
d: "m1307 1100 497-498 101 102-497 497zm-713 712 498-498 101 102-497 497zm713-396 101-102 498 498-102 101zM594 704l102-102 497 497-101 102zm554 553 102-102 102 102-102 102z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500"
};
/** */
export const NpxsCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-npxs-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
NpxsCircleColorful.displayName = 'NpxsCircleColorful';