@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 2.21 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", {
fill: "#0175b0",
d: "M189 989 0 1362h440l189-373H189m251-495L251 867h440l189-373H440M691 0 502 373h439L1130 0H691"
}), /*#__PURE__*/_jsx("path", {
fill: "#00a2d0",
d: "m628 988-190 374h440l189-374H628m250-494L689 867h440l189-373H878M1129 0 940 372h440L1569 0h-440"
}), /*#__PURE__*/_jsx("path", {
fill: "#0cf",
d: "m1059 988-189 374h439l190-374h-440m251-494-189 373h440l188-373h-439M1560 0l-189 372h440L2000 0h-440"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 1362"
};
/** */
export const Emc2Colorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-emc2-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
Emc2Colorful.displayName = 'Emc2Colorful';