@ant-design/web3-icons
Version:
A collection of Web3 icons.
75 lines • 3.66 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("ellipse", {
cx: "663",
cy: "147.9",
rx: "254.3",
ry: "147.9",
fill: "#e6007a"
}), /*#__PURE__*/_jsx("ellipse", {
cx: "663",
cy: "1262.3",
rx: "254.3",
ry: "147.9",
fill: "#e6007a"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-60 180.499 426.56)",
cx: "180.5",
cy: "426.5",
rx: "254.3",
ry: "148",
fill: "#e6007a"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-60 1145.575 983.768)",
cx: "1145.6",
cy: "983.7",
rx: "254.3",
ry: "147.9",
fill: "#e6007a"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30 180.45 983.72)",
cx: "180.5",
cy: "983.7",
rx: "148",
ry: "254.3",
fill: "#e6007a"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30 1145.522 426.601)",
cx: "1145.6",
cy: "426.6",
rx: "147.9",
ry: "254.3",
fill: "#e6007a"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1326.1 1410.3",
xmlSpace: "preserve",
enableBackground: "new 0 0 1326.1 1410.3"
};
/** */
export const DotColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-dot-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
DotColorful.displayName = 'DotColorful';