@ant-design/web3-icons
Version:
A collection of Web3 icons.
63 lines • 3.46 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: "M11.4 17 26 1l6 16M31.7 39.8l-8.5 9.3-6-16",
fill: "none",
stroke: "#000",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: "10"
}), /*#__PURE__*/_jsx("path", {
d: "m37.9 33-6.2 6.7",
fill: "none",
stroke: "#000",
strokeWidth: "2",
strokeMiterlimit: "10"
}), /*#__PURE__*/_jsx("path", {
d: "M31.9 17h10.4l6 16H27.7l-6-16H1l6 16h10.3",
fill: "none",
stroke: "#000",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: "10"
}), /*#__PURE__*/_jsx("path", {
d: "M31.9 17 17.2 33",
fill: "none",
stroke: "#000",
strokeWidth: "2",
strokeMiterlimit: "10"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 49.3 50.1",
xmlSpace: "preserve",
enableBackground: "new 0 0 49.3 50.1"
};
/** */
export const CtsiColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ctsi-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CtsiColorful.displayName = 'CtsiColorful';