optimall-icons
Version:
Biblioteca de ícones do Optimall
31 lines • 2.13 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 Calendar2Icon = /*#__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 || "calendar, 2",
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: "M7.51 12.9c0-.5.4-.9.9-.9s.9.4.9.9-.41.9-.9.9c-.49 0-.9-.4-.9-.9Zm0 4c0-.5.4-.9.9-.9s.9.4.9.9-.41.9-.9.9c-.49 0-.9-.4-.9-.9ZM16.4 12c-.5 0-.9.4-.9.9s.41.9.9.9c.49 0 .9-.4.9-.9s-.4-.9-.9-.9Zm-4.9.9c0-.5.4-.9.9-.9s.9.4.9.9-.41.9-.9.9c-.49 0-.9-.4-.9-.9Zm.9 3.1c-.5 0-.9.4-.9.9s.41.9.9.9c.49 0 .9-.4.9-.9s-.4-.9-.9-.9Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.3 2.43c.8.24 1.46.62 2.01 1.21 1.49 1.61 1.49 3.91 1.49 8.5v.51c0 4.59 0 6.89-1.49 8.5-1.52 1.64-3.81 1.64-7.96 1.64h-1.9c-4.15 0-6.44 0-7.96-1.64C2 19.54 2 17.24 2 12.65v-.51c0-4.59 0-6.89 1.49-8.5.55-.59 1.21-.97 2.01-1.21V1.9c0-.5.4-.9.9-.9s.9.4.9.9v.21C8.43 2 9.79 2 11.45 2h1.9c1.66 0 3.02 0 4.15.11V1.9c0-.5.4-.9.9-.9s.9.4.9.9v.53ZM6.4 4.8c-.35 0-.64-.2-.79-.49-.32.15-.58.32-.8.56-.45.49-.69 1.18-.83 2.14h16.84c-.14-.96-.38-1.66-.83-2.14-.22-.24-.49-.42-.8-.56-.15.29-.44.49-.79.49-.49 0-.89-.39-.9-.88-1-.11-2.33-.12-4.15-.12h-1.9c-1.82 0-3.14.02-4.15.12-.01.49-.41.88-.9.88Zm13.59 15.14C21 18.84 21 16.78 21 12.66h.01v-.51c0-1.32-.01-2.41-.04-3.34H3.84c-.04.93-.04 2.02-.04 3.34v.51c0 4.12 0 6.19 1.01 7.28.95 1.02 2.62 1.06 6.64 1.06h1.9c4.02 0 5.69-.04 6.64-1.06Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default Calendar2Icon;