@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 4.98 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fillRule: "nonzero",
fill: "none",
children: [/*#__PURE__*/_jsx("path", {
d: "M23.722 47.445C10.622 47.445 0 36.824 0 23.722 0 10.622 10.621 0 23.722 0c13.102 0 23.723 10.621 23.723 23.722-.005 13.102-10.626 23.723-23.723 23.723Z",
fill: "#4520e6"
}), /*#__PURE__*/_jsx("path", {
d: "M31.624 19.416a5.02 5.02 0 0 0-2.09-4.08l3.417-3.416-2.043.01-2.715 2.715a5 5 0 0 0-1.6-.26h-9.346v13.239L28.5 16.372a3.6 3.6 0 0 1 1.69 3.05 3.601 3.601 0 0 1-3.596 3.594h-.297L13.774 35.54h2.033l2.457-2.457h8.329a5.036 5.036 0 0 0 5.03-5.03c0-1.83-.983-3.43-2.447-4.31a5.062 5.062 0 0 0 2.448-4.326zm-12.942 4.735v-8.33h7.91c.137 0 .27.01.4.024zm11.506 3.891a3.601 3.601 0 0 1-3.595 3.596h-6.894l7.162-7.163c1.854.141 3.327 1.68 3.327 3.567z",
fill: "#fff"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 47.445 47.445",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BandCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-band-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BandCircleColorful.displayName = 'BandCircleColorful';