@ant-design/web3-icons
Version:
A collection of Web3 icons.
62 lines • 2.72 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: "400",
cy: "400",
r: "398.9",
fill: "#0c2129"
}), /*#__PURE__*/_jsx("rect", {
x: "139.71",
y: "213.48",
width: "398.9",
height: "99.73",
rx: "49.86",
transform: "rotate(-24 339.17 263.347)",
fill: "#37bec1"
}), /*#__PURE__*/_jsx("rect", {
x: "159.31",
y: "390.7",
width: "299.18",
height: "99.73",
rx: "49.86",
transform: "rotate(-24 308.9 440.57)",
fill: "#fbb144"
}), /*#__PURE__*/_jsx("rect", {
x: "261.39",
y: "486.79",
width: "398.9",
height: "99.73",
rx: "49.86",
transform: "rotate(-24 460.845 536.667)",
fill: "#e4615e"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 800 800"
};
/** */
export const EulCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-eul-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EulCircleColorful.displayName = 'EulCircleColorful';