@ant-design/web3-icons
Version:
A collection of Web3 icons.
65 lines • 3.61 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: "106",
cy: "48",
r: "48",
fill: "#88bdf3"
}), /*#__PURE__*/_jsx("circle", {
cx: "106",
cy: "164",
r: "48",
fill: "#3075ee"
}), /*#__PURE__*/_jsx("circle", {
cx: "164",
cy: "106",
r: "48",
fill: "#5795f1"
}), /*#__PURE__*/_jsx("circle", {
cx: "48",
cy: "106",
r: "48",
fill: "#205fec"
}), /*#__PURE__*/_jsx("path", {
d: "M94.7 94.7a48 48 0 0 1-35.3-35.3 48.31 48.31 0 0 1 35.3 35.3Z",
fill: "#134bef"
}), /*#__PURE__*/_jsx("path", {
d: "M59.3 152.7a48 48 0 0 1 35.3-35.3 48.31 48.31 0 0 1-35.3 35.3Z",
fill: "#0932e8"
}), /*#__PURE__*/_jsx("path", {
d: "M117.3 117.3a48 48 0 0 1 35.3 35.3 48.31 48.31 0 0 1-35.3-35.3Z",
fill: "#164bea"
}), /*#__PURE__*/_jsx("path", {
d: "M152.7 59.3a48 48 0 0 1-35.3 35.3 48.31 48.31 0 0 1 35.3-35.3Z",
fill: "#3170f1"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 212 212"
};
/** */
export const OkbColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-okb-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
OkbColorful.displayName = 'OkbColorful';