@ant-design/web3-icons
Version:
A collection of Web3 icons.
41 lines • 2.79 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: "M9.9 31.8v5.1H15v-1.3h7.1v11.3C10.3 46.2.6 36.5 0 24.7h11.3v7l-1.4.1zM31.7 35.6v1.3h5.1v-5.1h-1.3v-7h11.3c-.6 11.8-10.4 21.4-22.2 22.1V35.6h7.1z",
fill: "#005cc7"
}), /*#__PURE__*/_jsx("path", {
d: "M22.1 11.5h9.7V10H37v5.7h-5.1v-1.6h-9.7v10.6l11 .1v7h-1.3V33H15v-1.3h-1.2V15.1h1.3V10H10v5.1h1.3v7H0C.6 10.2 10.4.6 22.1 0v11.5z",
fill: "#005cc7"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 46.9 46.9",
xmlSpace: "preserve",
enableBackground: "new 0 0 46.9 46.9"
};
/** */
export const PrqColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-prq-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PrqColorful.displayName = 'PrqColorful';