optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 2.07 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const MoneySendSquareIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "money, send, square",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12.4 17.3c-.5 0-.9-.4-.9-.9v-.22c-.81-.22-1.48-.72-1.8-1.4a.903.903 0 0 1 .43-1.2c.45-.21.99-.02 1.2.43.11.23.52.48 1.07.48.67 0 1.1-.36 1.1-.6s-.43-.6-1.1-.6c-1.63 0-2.9-1.05-2.9-2.4 0-1.08.83-1.98 2-2.29v-.21c0-.5.4-.9.9-.9s.9.4.9.9v.22c.81.22 1.48.72 1.8 1.4.21.45.02.99-.43 1.2-.45.21-.99.02-1.2-.43-.11-.23-.52-.48-1.07-.48-.67 0-1.1.36-1.1.6s.43.6 1.1.6c1.63 0 2.9 1.05 2.9 2.4 0 1.08-.83 1.98-2 2.29v.21c0 .5-.4.9-.9.9Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.4 22.8c-4.72 0-7.09 0-8.75-1.65-1.66-1.65-1.66-4.02-1.66-8.75S2 5.31 3.66 3.66C5.31 2 7.68 2 12.4 2h1.5c.5 0 .9.4.9.9s-.4.9-.9.9h-1.5c-4.22 0-6.34 0-7.47 1.13S3.8 8.18 3.8 12.4s0 6.34 1.13 7.47S8.18 21 12.4 21s6.34 0 7.47-1.13S21 16.62 21 12.4v-1.5c0-.5.4-.9.9-.9s.9.4.9.9v1.5c0 4.72 0 7.09-1.65 8.75-1.66 1.65-4.03 1.65-8.75 1.65Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.9 8.8c-.23 0-.46-.09-.64-.26a.9.9 0 0 1 0-1.27l3.36-3.36-2.23-.1a.897.897 0 0 1-.86-.94c.02-.5.46-.88.94-.86l3.12.15c1.28.09 2.09.93 2.09 2.14l.12 3.06c.02.5-.37.91-.87.93-.49.04-.91-.37-.93-.87l-.09-2.26-3.38 3.38c-.18.18-.41.26-.64.26h.01Z"
}));
});
export default MoneySendSquareIcon;