@ant-design/web3-icons
Version:
A collection of Web3 icons.
66 lines • 5.74 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: "m40.9 33.6-2.5 4.3-2.5 4.3-4.7-2.7-18.8-10.8v20.4c-3-2.2-7-2.2-10 0V26.8c3.7 2.8 9 2 11.7-1.7 1.1-1.4 1.7-3.2 1.7-5 0-.3 0-.6-.1-1l20.4 11.8 2.2 1.3 2.6 1.4zM71.5 54.6c.2.4.3.8.3 1.2h-7.5l3.7-2.2c1.3-.6 2.8-.2 3.5 1z",
fill: "#8acaff"
}), /*#__PURE__*/_jsx("path", {
d: "M74.3 26.8v22.3c-3-2.2-7-2.2-10 0V28.7L45.6 39.5l-4.7 2.7-2.5-4.3-2.5-4.3 2.5-1.4 2.2-1.3L61 19.1c0 .3-.1.6-.1 1 0 4.6 3.8 8.4 8.4 8.4 1.8 0 3.6-.6 5-1.7zM39.7.1c-.1-.1-.1-.1 0 0l-.1-.1H37.6L13.1 13.9c1.3 1.2 2.1 2.7 2.5 4.3L35.9 6.5v15c0 1.4 1.1 2.5 2.5 2.5s2.5-1.1 2.5-2.5v-15l20.3 11.7c.4-1.7 1.2-3.2 2.5-4.3L39.7.1zM71.8 55.8h-7.5l3.7-2.2c1.2-.7 2.7-.3 3.4.9.3.4.4.9.4 1.3zM61.1 57.7 40.9 69.4v-15c0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5v15L15.6 57.7c-.4 1.7-1.2 3.2-2.5 4.3l24 13.8H39.3c.1 0 .2-.1.2-.1H39.8l24-13.8c-1.4-1.1-2.3-2.6-2.7-4.2z",
fill: "#8acaff"
}), /*#__PURE__*/_jsx("circle", {
cx: "38.4",
cy: "37.9",
r: "7.4",
fill: "#4187f7"
}), /*#__PURE__*/_jsx("circle", {
cx: "7.4",
cy: "20.1",
r: "7.4",
fill: "#4187f7"
}), /*#__PURE__*/_jsx("circle", {
cx: "7.4",
cy: "55.8",
r: "7.4",
fill: "#4187f7"
}), /*#__PURE__*/_jsx("circle", {
cx: "69.3",
cy: "20.1",
r: "7.4",
fill: "#4187f7"
}), /*#__PURE__*/_jsx("circle", {
cx: "69.3",
cy: "55.8",
r: "7.4",
fill: "#4187f7"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 76.7 75.8",
xmlSpace: "preserve",
enableBackground: "new 0 0 76.7 75.8"
};
/** */
export const MdtColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-mdt-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MdtColorful.displayName = 'MdtColorful';