@ant-design/web3-icons
Version:
A collection of Web3 icons.
81 lines • 4.75 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 112)",
fillRule: "nonzero",
fill: "none",
children: [/*#__PURE__*/_jsx("circle", {
fill: "#555",
cx: "400",
cy: "400",
r: "400"
}), /*#__PURE__*/_jsxs("g", {
transform: "translate(100 114)",
fill: "#FFF",
children: [/*#__PURE__*/_jsx("ellipse", {
cx: "300.01",
cy: "60.096",
rx: "103.409",
ry: "60.096"
}), /*#__PURE__*/_jsx("ellipse", {
cx: "300.01",
cy: "512.904",
rx: "103.409",
ry: "60.096"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-59.999 103.784 173.31)",
cx: "103.784",
cy: "173.309",
rx: "103.346",
ry: "60.17"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-59.999 496.226 399.707)",
cx: "496.226",
cy: "399.707",
rx: "103.346",
ry: "60.129"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30.001 103.799 399.693)",
cx: "103.799",
cy: "399.693",
rx: "60.17",
ry: "103.346"
}), /*#__PURE__*/_jsx("ellipse", {
transform: "rotate(-30.001 496.25 173.323)",
cx: "496.251",
cy: "173.323",
rx: "60.129",
ry: "103.346"
})]
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const DotCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-dot-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
DotCircleFilled.displayName = 'DotCircleFilled';