@ant-design/web3-icons
Version:
A collection of Web3 icons.
34 lines • 1.7 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: "M16.6 0 4.9 16.1 0 39.9 16.6 50l16.6-10.1-5-23.9ZM2.7 38.8l3.7-18.1 8.4 25.5Zm4.9-22.2 9-12.4 9 12.4-9 27.2Zm10.7 29.6 8.4-25.5 3.7 18.1Z"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 33.2 50"
};
/** */
export const EosColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-eos-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EosColorful.displayName = 'EosColorful';