@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 3.55 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: "m1307 36.3 885 483c93 51 146 147 147 247h1v969c0 115-69 215-169 258l-866 473c-88 48-190 44-272-2l-885-483c-93-51-146-147-147-247H0v-969c0-115 69-215 169-258l866-473c88-48 190-44 272 2z",
fill: "#22aea5"
}), /*#__PURE__*/_jsx("path", {
d: "M752 773.3c95 0 172 77 172 172v610c0 95-77 172-172 172s-172-77-172-172v-610c0-95 77-172 172-172zM1588 773.3c95 0 172 77 172 172v610c0 95-77 172-172 172s-172-77-172-172v-610c0-95 77-172 172-172zM1170 1230.3c-95 0-172-77-172-172s77-172 172-172 172 77 172 172-77 172-172 172z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2340 2500.6",
xmlSpace: "preserve",
enableBackground: "new 0 0 2340 2500.6"
};
/** */
export const MlkColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-mlk-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MlkColorful.displayName = 'MlkColorful';