@ant-design/web3-icons
Version:
A collection of Web3 icons.
38 lines • 2.37 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M168 92.6 24 175.7V264h48v-67.9l144-83.2V24h-48v68.6zm-23.9-13.8L144 0h96v126.7L95.7 209.9l.3.2V288H0V162l144.1-83.2zM0 134.2V0h96v78.8L72 92.6V24H24v96.3L0 134.2zm144 75.9 24-14.1v68h48v-96l24-13.9V288h-96v-77.9z",
fillRule: "evenodd",
clipRule: "evenodd"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 240 288",
xmlSpace: "preserve",
enableBackground: "new 0 0 240 288"
};
/** */
export const XhvColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xhv-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XhvColorful.displayName = 'XhvColorful';