@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 3.01 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: "M15.46 0A15.36 15.36 0 1 1 0 15.36 15.36 15.36 0 0 1 15.46 0Z",
fill: "#2b61d1"
}), /*#__PURE__*/_jsx("path", {
d: "m17.29 24.27-1.76 1-3.78-2.18 1.72-1h.07ZM24.05 10.53v2.05l-3.72-2.15-1-.58-1 .58-4.74 2.74-1 .58V15l-1.85-1.1-1-.58-1 .58-1.74.99v-4.36l8.52-4.91Z",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M24.05 14.91v5.47l-4.73 2.73-4.73-2.73v-5.47l4.74-2.73ZM12.46 17.22v3.15l-2.73 1.57L7 20.37v-3.15l2.72-1.57Z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 30.71 30.71"
};
/** */
export const FluxCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-flux-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FluxCircleColorful.displayName = 'FluxCircleColorful';