@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 5.52 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: "#555",
fillRule: "nonzero",
children: [/*#__PURE__*/_jsx("path", {
d: "m248.54 512 .422 154.73 131.425 77.365v90.587l-208.34-122.237V466.753L248.54 512Zm0-154.73v90.165L172 402.142v-90.165l76.54-45.294 76.915 45.294-76.915 45.293Zm186.733-45.293 76.54-45.294 76.914 45.294-76.914 45.293-76.54-45.293Z"
}), /*#__PURE__*/_jsx("path", {
d: "M303.847 634.659V544.07l76.54 45.294v90.165l-76.54-44.871ZM435.273 776.54l76.54 45.294 76.914-45.294v90.165L511.813 912l-76.54-45.294v-90.165Zm263.225-464.564 76.54-45.294 76.915 45.294v90.165l-76.915 45.293V357.27l-76.54-45.293Zm76.54 354.753L775.46 512 852 466.706V712.4L643.66 834.635v-90.587l131.378-77.318Z"
}), /*#__PURE__*/_jsx("path", {
d: "m720.153 634.659-76.54 44.871v-90.165l76.54-45.294z"
}), /*#__PURE__*/_jsx("path", {
d: "m720.153 389.341.422 90.588-131.8 77.365v155.105l-76.54 44.871-76.54-44.871V557.294l-131.8-77.365V389.34l76.867-45.293 131.004 77.74 131.8-77.74 76.915 45.293h-.328ZM303.847 234.66 511.813 112l208.34 122.659-76.54 45.293-131.8-77.74-131.426 77.74-76.54-45.293Z"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const BnbFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bnb-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BnbFilled.displayName = 'BnbFilled';