@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 4.67 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M59.9 12.3h8.7v25.1h-8.7V12.3zM48 10.4c-3.3 0-6.7.8-7.6 2.3v.1V2.2h-8.9v16.7c.9.4 1.8.9 2.7 1.4.3.2.6.3.8.4.1.1.2.1.4.2 0 0-5.1 7.9-12 9.5-4.1 1-8.9-.2-9.9-4.3 0-.2-.1-.3-.1-.5.7-.4 1.3-.7 2-1.1 1.7-.7 3-1.3 3.5-1.5h.1c4.1-1.5 7.5-2 7.5-2-3.1-.3-5.7-.1-8 .4-2 .4-3.7 1-4.9 1.6.7-2.9 3.3-5.5 6.4-6.2.3-.1.5-.1.8-.2h.2c.2 0 .4-.1.6-.1H23.9c1.3.1 2.9.5 4.7 1.1V12c-.9-.3-1.8-.5-2.7-.8-2.6-.6-6.9-1.3-11.6-.2-7.6 1.8-9.7 7.4-9.7 14.2 0 .9.1 1.7.2 2.4-1.6 1.1-3.3 2.3-4.7 3.7 0 0 2.2-1 5.1-2.2 1.9 6.5 8.7 8.7 13.7 8.7 5.3 0 8.7-1.5 12.7-4V37h8.9V21c.8-2.2 2.3-2.8 3.9-2.8 2.1 0 3.4 1.5 3.4 3.9v15h8.9V19.5c0-5.5-3.5-9.1-8.7-9.1zM64.1 0c-2.7 0-4.6 1.9-4.6 4.6 0 2.7 1.9 4.6 4.6 4.6 2.7 0 4.6-1.9 4.6-4.6 0-2.7-1.9-4.6-4.6-4.6zM98.2 22.8V11.6h-8.9v1.6c-8.6-5.5-14.1.2-14.1.2-2.6 2.4-4.1 6.1-4.1 10.9 0 8.4 5.1 13.4 11.6 13.4 2.5 0 4.7-.6 6.7-3.3.2.6.7 2.2 1.1 2.7h9.3c-1.7-2.7-1.7-11.7-1.6-14.3zm-13.5 7.5c-2.9 0-4.9-2.5-4.9-6s2-6 4.9-6c2 0 3.6 1.2 4.4 3.2v5.7c-.8 1.9-2.4 3.1-4.4 3.1z",
fill: "#3aac59"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 99.7 37.8",
xmlSpace: "preserve",
enableBackground: "new 0 0 99.7 37.8"
};
/** */
export const XchColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xch-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XchColorful.displayName = 'XchColorful';