@ant-design/web3-icons
Version:
A collection of Web3 icons.
56 lines • 6.31 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: "M512 112c220.93 0 400 179.07 400 400S732.93 912 512 912 112 732.93 112 512s179.07-400 400-400Z",
fill: "#555"
}), /*#__PURE__*/_jsx("path", {
d: "m331.84 512 .288 105.77L422 670.653v61.923l-142.468-83.558V481.071L331.84 512Zm0-105.77v61.635l-52.34-30.961v-61.635l52.34-30.961 52.596 30.961-52.596 30.962Zm127.692-30.96 52.34-30.962 52.596 30.961-52.596 30.962-52.34-30.962Z",
fill: "#FFF",
fillRule: "nonzero"
}), /*#__PURE__*/_jsx("path", {
d: "M369.66 595.846v-61.923L422 564.885v61.634l-52.34-30.673Zm89.872 96.987 52.34 30.962 52.596-30.962v61.635l-52.596 30.961-52.34-30.961v-61.635Zm180-317.564 52.34-30.961 52.596 30.961v61.635l-52.596 30.961v-61.634l-52.34-30.962Zm52.34 242.5L692.16 512l52.34-30.962v167.95l-142.468 83.557v-61.923l89.84-52.853Z",
fill: "#FFF",
fillRule: "nonzero"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M654.34 595.846 602 626.52v-61.634l52.34-30.962z"
}), /*#__PURE__*/_jsx("path", {
d: "m654.34 428.154.288 61.923-90.128 52.885v106.025l-52.34 30.673-52.34-30.673V542.962l-90.128-52.885v-61.923l52.564-30.962 89.584 53.141 90.128-53.14 52.596 30.96h-.224ZM369.66 322.417l142.212-83.846 142.468 83.846L602 353.378l-90.128-53.14L422 353.377l-52.34-30.961Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BnbCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bnb-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BnbCircleFilled.displayName = 'BnbCircleFilled';