@ant-design/web3-icons
Version:
A collection of Web3 icons.
44 lines • 3.45 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", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("path", {
d: "M912 512c0 220.916-179.084 400-400 400-220.914 0-400-179.084-400-400 0-220.914 179.086-400 400-400 220.916 0 400 179.086 400 400Z",
fill: "#555"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "m445.287 433.998-50.071-29.082L245 492.162v173.892L395.216 753l150.215-86.946V395.622l83.353-48.27 83.354 48.27v96.54l-83.354 48.27-50.071-29.082v77.352l50.071 29.082L779 530.838V356.946L628.784 270 478.57 356.946v270.432l-83.353 48.27-83.354-48.27v-96.84l83.354-48.27 50.071 29.082z"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const PolygonCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-polygon-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PolygonCircleFilled.displayName = 'PolygonCircleFilled';