@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 4.33 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: "nonzero",
children: [/*#__PURE__*/_jsx("path", {
d: "M849.815 295h-675.63C140.019 295 112 323.062 112 358.333v443.334C112 836.938 140.019 865 174.185 865h675.63c34.074 0 62.093-28.062 62.185-63.333V683.21H682.128c-61.371-.333-111.418-50.456-111.463-112.593.045-61.555 50.092-111.679 111.463-111.42H912V358.334C912 323.062 883.981 295 849.815 295ZM685.648 601.111c11.115 3.088 22.867.314 31.679-7.037 7.665-8.163 11.138-19.724 8.213-30.494-2.276-11.25-10.556-20.037-21.12-23.457-11.115-3.088-22.867-.313-31.679 7.037-7.665 8.163-11.138 19.724-8.213 30.494 2.277 11.25 10.556 20.038 21.12 23.457Z",
fill: "#FFF"
}), /*#__PURE__*/_jsx("path", {
d: "M861.978 265.36c3.038 0 6.076.274 9.022.64a61.76 61.76 0 0 0-28.54-12.25l-586.18-92.967c-34.155-5.393-66.286 17.643-71.718 51.557L176 265.452h685.978v-.092Z",
fill: "#CCC"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const WalletWhiteColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-wallet-white-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
WalletWhiteColorful.displayName = 'WalletWhiteColorful';