@ant-design/web3-icons
Version:
A collection of Web3 icons.
39 lines • 2.82 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: "M157.27 107.26a1 1 0 0 1 .82 1.42l-46.75 80.85a1 1 0 0 1-.82.47H81.94a.94.94 0 0 1-.81-1.42l46.75-80.85a.94.94 0 0 1 .81-.47Zm-27.79-23.17a1 1 0 0 1-.82-.47L81.13 1.42A.94.94 0 0 1 81.94 0h28.58a1 1 0 0 1 .82.47l47.53 82.2a.94.94 0 0 1-.81 1.42Z",
fill: "#e31337"
}), /*#__PURE__*/_jsx("path", {
d: "M135.13 1.42A.94.94 0 0 1 136 0h28.62a.93.93 0 0 1 .81.47l54.49 94.06a.93.93 0 0 1 0 .94l-54.49 94.06a.93.93 0 0 1-.81.47H136a.94.94 0 0 1-.82-1.42L189.34 95Zm-23.26 93.1a1 1 0 0 1 0 1l-54.74 94.01a1 1 0 0 1-1.65 0L.13 95.48a1 1 0 0 1 0-1L54.87.47a1 1 0 0 1 1.65 0Z",
fill: "#e31337"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 220 190"
};
/** */
export const HiveColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-hive-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
HiveColorful.displayName = 'HiveColorful';