@ant-design/web3-icons
Version:
A collection of Web3 icons.
44 lines • 5.31 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("path", {
fill: "#000",
fillRule: "nonzero",
d: "M0 0h1024v1024H0z"
}), /*#__PURE__*/_jsx("path", {
d: "M403.404 223.762h-166.81c-7.086 0-12.83 5.745-12.83 12.831v166.81c0 7.087 5.744 12.831 12.83 12.831h166.81c7.087 0 12.832-5.744 12.832-12.831v-166.81c0-7.086-5.745-12.83-12.832-12.83ZM595.96 416.234H429.15c-7.086 0-12.832 5.746-12.832 12.832v166.81c0 7.087 5.746 12.832 12.832 12.832h166.81c7.087 0 12.832-5.745 12.832-12.832v-166.81c0-7.086-5.745-12.832-12.832-12.832Zm25.581-192.472h166.81c7.086 0 12.832 5.745 12.832 12.831v166.81c0 7.087-5.746 12.831-12.832 12.831h-166.81c-7.087 0-12.831-5.744-12.831-12.831v-166.81c0-7.086 5.744-12.83 12.831-12.83ZM403.405 608.71h-166.81c-7.087 0-12.832 5.744-12.832 12.831v166.81c0 7.086 5.745 12.832 12.831 12.832h166.81c7.087 0 12.832-5.746 12.832-12.832V621.54c0-7.087-5.745-12.831-12.831-12.831Zm218.136 0h166.81c7.086 0 12.832 5.744 12.832 12.831v166.81c0 7.086-5.746 12.832-12.832 12.832h-166.81c-7.087 0-12.831-5.746-12.831-12.832V621.54c0-7.087 5.744-12.831 12.831-12.831Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const OkxWalletColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-okx-wallet-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
OkxWalletColorful.displayName = 'OkxWalletColorful';