@ant-design/web3-icons
Version:
A collection of Web3 icons.
65 lines • 3.19 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("script", {}), /*#__PURE__*/_jsx("script", {}), /*#__PURE__*/_jsx("path", {
d: "m85 0 65 250L215 0z",
fill: "#a0ddfe",
stroke: "#a0ddfe"
}), /*#__PURE__*/_jsx("path", {
d: "m215 0-65 250L300 85z",
fill: "#88d3ff",
stroke: "#88d3ff"
}), /*#__PURE__*/_jsx("path", {
d: "M300 85 150 250l150-35z",
fill: "#73cbff",
stroke: "#73cbff"
}), /*#__PURE__*/_jsx("path", {
d: "m300 215-150 35 65 50z",
fill: "#5bc1ff",
stroke: "#5bc1ff"
}), /*#__PURE__*/_jsx("path", {
d: "m215 300-65-50-65 50z",
fill: "#80cfff",
stroke: "#80cfff"
}), /*#__PURE__*/_jsx("path", {
d: "m85 300 65-50L0 215z",
fill: "#95d9ff",
stroke: "#95d9ff"
}), /*#__PURE__*/_jsx("path", {
d: "m0 215 150 35L0 85z",
fill: "#ade2ff",
stroke: "#ade2ff"
}), /*#__PURE__*/_jsx("path", {
d: "m0 85 150 165L85 0z",
fill: "#b7e7ff",
stroke: "#b7e7ff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 300 300"
};
/** */
export const OpenmaskCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-openmask-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
OpenmaskCircleColorful.displayName = 'OpenmaskCircleColorful';