optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 2.03 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 FileDownloadIcon = /*#__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, download",
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: "M3.85 8.25C5.02 9.74 5.92 10.8 6.9 10.8l.02-.01c.97 0 1.88-1.06 3.05-2.55l.135-.17c.184-.23.342-.429.455-.55a.9.9 0 0 0-.02-1.27.9.9 0 0 0-1.27.02c-.176.176-.42.487-.703.848l-.017.022c-.06.072-.128.159-.204.254-.156.195-.341.428-.536.656V1.9c0-.5-.4-.9-.9-.9s-.9.4-.9.9v6.16c-.29-.34-.57-.69-.74-.91-.29-.37-.55-.69-.72-.87a.89.89 0 0 0-1.27-.02.89.89 0 0 0-.02 1.27c.14.14.35.41.59.72Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.83 21.71c1.34 1.09 3.08 1.09 6.53 1.09l-.02.02c.78 0 1.22 0 1.69-.17l.14-.06.14-.06c.44-.21.75-.52 1.3-1.07l4.74-4.74.056-.056c.605-.605.95-.95 1.164-1.474.22-.54.22-1.03.22-1.94V9.91c0-4.01 0-6.03-1.44-7.46-1.43-1.44-3.45-1.44-7.46-1.44-.5 0-.9.4-.9.9s.4.9.9.9c3.52 0 5.28 0 6.19.91.91.91.91 2.67.91 6.19v4.1h-.09c-2.98 0-4.62 0-5.76 1.14C12 16.29 12 17.93 12 20.91V21h-.64c-3.03 0-4.55 0-5.4-.69-.17-.14-.33-.3-.47-.47-.69-.85-.69-2.37-.69-5.4V12.9c0-.5-.4-.9-.9-.9s-.9.4-.9.9v1.54c0 3.45 0 5.18 1.09 6.53.22.28.47.52.74.74Zm9.58-5.3c.5-.5 1.39-.59 3.31-.61l-3.92 3.92c.02-1.92.11-2.81.61-3.31Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default FileDownloadIcon;