optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2 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 CheckInvoiceIcon = /*#__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 || "check, invoice",
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: "M10.9 22.8c-.55 0-.94-.25-1.54-.63l-1.91-1.2c-.24-.15-.49-.31-.57-.33l-.52.33c-.09.05-.19.13-.3.21-.76.53-2.04 1.42-3.17.69-.87-.56-.87-1.6-.87-3.32V7.9C2 4.93 2 3.3 3.07 2.16 4.17 1 5.72 1 8.55 1h4.71c2.83 0 4.38 0 5.47 1.16C19.8 3.3 19.8 4.93 19.8 7.9v4c0 .5-.4.9-.9.9s-.9-.4-.9-.9v-4c0-2.51 0-3.89-.58-4.5-.54-.57-1.6-.6-4.16-.6H8.55c-2.56 0-3.63.02-4.17.6-.58.62-.58 2-.58 4.5v10.65c0 .74 0 1.5.08 1.79.29-.04.9-.47 1.14-.64.14-.1.26-.19.37-.25.58-.36.98-.64 1.57-.61.51.02.88.25 1.44.6l1.91 1.21c.24.16.52.33.61.35.03-.02.31-.2.55-.35.42-.26.98-.14 1.24.28.27.42.14.98-.28 1.24-.6.38-.99.63-1.54.63h.01Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.9 11.8h-4c-.5 0-.9-.4-.9-.9s.4-.9.9-.9h4c.5 0 .9.4.9.9s-.4.9-.9.9Zm4-4h-8c-.5 0-.9-.4-.9-.9s.4-.9.9-.9h8c.5 0 .9.4.9.9s-.4.9-.9.9Zm1 14.5h-.03a.875.875 0 0 1-.8-.57c-.85-2.13-2.55-3.02-2.57-3.03a.899.899 0 0 1-.39-1.21c.22-.44.76-.62 1.2-.4.07.04 1.46.75 2.59 2.39 1.18-2.1 3.44-5.64 5.71-6.44.47-.17.98.08 1.15.55.17.47-.08.98-.55 1.15-1.8.64-4.33 4.66-5.49 7.05-.15.31-.47.5-.81.5l-.01.01Z"
}));
});
export default CheckInvoiceIcon;