@ant-design/web3-icons
Version:
A collection of Web3 icons.
72 lines • 4.17 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
transform: "translate(112 130)",
fill: "#555",
fillRule: "nonzero",
children: [/*#__PURE__*/_jsx("ellipse", {
cx: "400.014",
cy: "80.127",
rx: "137.874",
ry: "80.127"
}), /*#__PURE__*/_jsx("ellipse", {
cx: "400.014",
cy: "683.873",
rx: "137.874",
ry: "80.127"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-59.999 138.388 231.08)",
cx: "138.388",
cy: "231.079",
rx: "137.794",
ry: "80.225"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-59.999 661.626 532.943)",
cx: "661.626",
cy: "532.943",
rx: "137.794",
ry: "80.17"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30.001 138.407 532.924)",
cx: "138.407",
cy: "532.925",
rx: "80.225",
ry: "137.794"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30.001 661.659 231.097)",
cx: "661.659",
cy: "231.097",
rx: "80.17",
ry: "137.794"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const DotFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-dot-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
DotFilled.displayName = 'DotFilled';