@ant-design/web3-icons
Version:
A collection of Web3 icons.
48 lines • 5 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("path", {
d: "M512 32c265.115 0 480 214.885 480 480S777.115 992 512 992 32 777.115 32 512 246.885 32 512 32z",
fill: "#F0B90B"
}), /*#__PURE__*/_jsx("path", {
d: "m295.808 512 .346 126.923L404 702.385v74.307L233.038 676.423V474.885L295.808 512zm0-126.923v73.961L233 421.885v-73.962l62.808-37.154 63.115 37.154-63.115 37.154zm153.23-37.154 62.808-37.154 63.116 37.154-63.116 37.154-62.808-37.154z",
fill: "#FFF"
}), /*#__PURE__*/_jsx("path", {
d: "M341.192 612.615v-74.307L404 575.462v73.961l-62.808-36.808zM449.038 729l62.808 37.154L574.962 729v73.962l-63.116 37.153-62.808-37.153V729zm216-381.077 62.808-37.154 63.116 37.154v73.962l-63.116 37.153v-73.961l-62.808-37.154zm62.808 291L728.192 512 791 474.846v201.539L620.038 776.654v-74.308l107.808-63.423z",
fill: "#FFF"
}), /*#__PURE__*/_jsx("path", {
d: "M682.808 612.615 620 649.423v-73.961l62.808-37.154v74.307z",
fill: "#FFF"
}), /*#__PURE__*/_jsx("path", {
d: "m682.808 411.385.346 74.307L575 549.154v127.23l-62.808 36.808-62.807-36.807V549.154L341.23 485.692v-74.307l63.077-37.154L511.808 438l108.154-63.77 63.115 37.155h-.27zM341.192 284.5l170.654-100.615L682.808 284.5 620 321.654l-108.154-63.77L404 321.655 341.192 284.5z",
fill: "#FFF"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BSCCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bsc-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BSCCircleColorful.displayName = 'BSCCircleColorful';