@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 3.32 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: "M2 1.88h27.5v27.5H2z",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M11.32 19.39h2.94a5.68 5.68 0 0 0 2.43-.55 6.08 6.08 0 0 0 1.89-1.45 6.71 6.71 0 0 0 1.2-2.11 6.94 6.94 0 0 0 .44-2.44 6.06 6.06 0 0 0-.47-2.36 7.31 7.31 0 0 0-1.27-2.07 6.33 6.33 0 0 0-1.93-1.49 5.22 5.22 0 0 0-2.44-.58H6.37v18.79h5Zm0-8.51h2.5a1.34 1.34 0 0 1 .91.44 2.2 2.2 0 0 1 .47 1.59 2.12 2.12 0 0 1-.43 1.53 1.12 1.12 0 0 1-.84.44h-2.61Z",
fill: "#2d8eff"
}), /*#__PURE__*/_jsx("path", {
d: "M0 1.81v27.88a1.81 1.81 0 0 0 1.81 1.81h27.88a1.81 1.81 0 0 0 1.81-1.81V1.81A1.81 1.81 0 0 0 29.69 0H1.81A1.81 1.81 0 0 0 0 1.81Zm26 26H5.48A1.81 1.81 0 0 1 3.67 26V5.48a1.81 1.81 0 0 1 1.81-1.81H26a1.81 1.81 0 0 1 1.81 1.81V26A1.81 1.81 0 0 1 26 27.79Z",
fill: "#2d8eff"
}), /*#__PURE__*/_jsx("path", {
d: "M13.53 21.6h11.59v3.56H13.53z",
fill: "#2d8eff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 31.5 31.5"
};
/** */
export const PreColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pre-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PreColorful.displayName = 'PreColorful';