optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 2.33 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 FileValidationIcon = /*#__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 || "file, validation",
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: "M18.9 14.5c-.5 0-.9.4-.9.9v.68c0 1.58 0 2.37-.21 2.88-.33.85-1.05 1.51-1.96 1.83-.57.2-1.42.2-3.12.2h-.82c-1.34 0-2.43-1.09-2.43-2.43 0-.17 0-.36.02-.54.03-.56.06-1.19-.1-1.79-.24-.88-.93-1.58-1.82-1.82-.6-.16-1.23-.13-1.79-.11-.19 0-.37.02-.54.02-1.34 0-2.43-1.09-2.43-2.43V9.16c0-2.86 0-4.29.65-5.11.19-.24.42-.45.67-.63.9-.63 2.44-.63 5.51-.63.5 0 .9-.4.9-.9s-.4-.9-.9-.9C6.18 1 4.45 1 3.08 1.96c-.39.28-.75.61-1.04.98C1 4.25 1 5.9 1 9.17v2.73c0 2.95.01 4.46.53 5.78.85 2.14 2.64 3.83 4.91 4.63 1.28.45 2.75.49 5.45.49h.81c1.9 0 2.85 0 3.71-.3 1.4-.49 2.51-1.54 3.04-2.87.33-.84.33-1.74.33-3.55v-.68c0-.5-.4-.9-.9-.9h.02ZM3.21 17.01c-.17-.43-.27-.95-.32-1.6.67.45 1.48.72 2.35.72.2 0 .41 0 .63-.02.45-.02.91-.04 1.24.04.26.07.47.28.54.54.09.33.07.79.05 1.24-.01.21-.02.43-.02.63 0 .86.26 1.65.7 2.32-.52-.06-.95-.14-1.33-.28-1.78-.62-3.17-1.93-3.83-3.59h-.01Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M18.6 4.55c-1.04.37-2.07 1.49-2.73 2.34-.43-.35-.82-.39-.97-.39-.5 0-.9.4-.9.9 0 .44.31.8.73.88.05.04.19.17.37.52.15.29.44.48.76.5h.05c.31 0 .59-.16.76-.42.59-.93 1.77-2.36 2.54-2.63.47-.17.71-.68.55-1.15a.907.907 0 0 0-1.15-.55h-.01Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.9 1A5.91 5.91 0 0 0 11 6.9c0 3.25 2.65 5.9 5.9 5.9 3.25 0 5.9-2.65 5.9-5.9 0-3.25-2.65-5.9-5.9-5.9Zm0 10c-2.26 0-4.1-1.84-4.1-4.1s1.84-4.1 4.1-4.1S21 4.64 21 6.9 19.16 11 16.9 11Z"
}));
});
export default FileValidationIcon;