@ant-design/web3-icons
Version:
A collection of Web3 icons.
48 lines • 2.66 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("circle", {
cx: "35.4",
cy: "35.4",
r: "35.4",
fill: "#2eb6ea"
}), /*#__PURE__*/_jsx("path", {
d: "M35.2 70.8C0 70.8-13.9 24.5 17.2 5c-3.7 38.7 16 39.5 34.2 38.7C82 42.2 82.1 70.8 82.1 70.8H35.2z",
fill: "#1542cd"
}), /*#__PURE__*/_jsx("path", {
d: "M68.9 47C63.6 60.6 50.5 70.3 35 70.8h47.6c.1 0 0-16.7-13.7-23.8z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#745ddf"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 82.7 70.8",
xmlSpace: "preserve",
enableBackground: "new 0 0 82.7 70.8"
};
/** */
export const LqtyColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-lqty-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
LqtyColorful.displayName = 'LqtyColorful';