@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 2.13 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: "M60.7 0h34.7v34.7H60.7zM60.7 69.5h34.7v34.7H60.7z",
fill: "#069dd8"
}), /*#__PURE__*/_jsx("path", {
d: "M95.5 34.7h34.7v34.7H95.5z",
fill: "#1f7995"
}), /*#__PURE__*/_jsx("path", {
transform: "rotate(-45 24.536 52.137)",
d: "M7.19 34.79h34.7v34.7H7.19z",
fill: "#a4be39"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 130.2 104.2"
};
/** */
export const PlbtColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-plbt-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PlbtColorful.displayName = 'PlbtColorful';