@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
18 lines • 1 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import SvgIcon from '@mui/material/SvgIcon';
import React from 'react';
const WalletIcon = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
width: "24",
height: "24",
viewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M5 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Zm0 4c0-.6.4-1 1-1h12c.6 0 1 .4 1 1v2h-1.6a3 3 0 0 0-2.1.9l-.2.2a3 3 0 0 1-2.2.9h-1.8a3 3 0 0 1-2.2-.9l-.2-.2a3 3 0 0 0-2.1-.9H5V8Z",
clipRule: "evenodd"
}));
});
export default WalletIcon;