@ant-design/web3-icons
Version:
A collection of Web3 icons.
61 lines • 3.89 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: "m1.7 11.7-.2.3c-2.3 3.6-1.8 8.3 1.3 11.3C4.5 25.1 6.9 26 9.3 26L1.7 11.7z",
fill: "#00a3ff"
}), /*#__PURE__*/_jsx("path", {
d: "m9.3 16-7.6-4.4L9.3 26V16zM16.9 11.7l.2.3c2.3 3.6 1.8 8.3-1.3 11.3C14 25.1 11.7 26 9.3 26l7.6-14.3z",
opacity: ".6",
fill: "#00a3ff",
enableBackground: "new"
}), /*#__PURE__*/_jsx("path", {
d: "m9.3 16 7.6-4.4L9.3 26V16zM9.3 6.3v7.5l6.6-3.7-6.6-3.8z",
opacity: ".2",
fill: "#00a3ff",
enableBackground: "new"
}), /*#__PURE__*/_jsx("path", {
d: "m9.3 6.3-6.6 3.8 6.6 3.7V6.3z",
opacity: ".6",
fill: "#00a3ff",
enableBackground: "new"
}), /*#__PURE__*/_jsx("path", {
d: "M9.3 0 2.7 10.1l6.6-3.8V0z",
fill: "#00a3ff"
}), /*#__PURE__*/_jsx("path", {
d: "m9.3 6.3 6.6 3.8L9.3 0v6.3z",
opacity: ".6",
fill: "#00a3ff",
enableBackground: "new"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 18.6 26",
xmlSpace: "preserve",
enableBackground: "new 0 0 18.6 26"
};
/** */
export const StethColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-steth-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
StethColorful.displayName = 'StethColorful';