@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.22 kB
JavaScript
import * as React from "react";
function Calender2Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8.75 2a.75.75 0 0 0-1.5 0v1H7C4.239 3 2 5.127 2 7.75v7.719C2 19.076 5.078 22 8.875 22h6.25C18.922 22 22 19.076 22 15.469V7.75C22 5.127 19.761 3 17 3h-.25V2a.75.75 0 0 0-1.5 0v1h-6.5zm6.5 1h1.5v1a.75.75 0 0 1-1.5 0zm-6.5 0v1a.75.75 0 0 1-1.5 0V3zm.98 7.97C9.73 9.67 10.77 9 12 9s2.26.67 2.26 1.97c0 .62-.28 1.08-.73 1.39.62.35.97.94.97 1.62 0 1.24-.96 2.01-2.5 2.01-1.55 0-2.5-.77-2.5-2.01 0-.68.35-1.26.96-1.62-.44-.3-.73-.77-.73-1.39m1.37.07c0 .49.38.8.9.8s.9-.31.9-.8c0-.5-.38-.79-.9-.79s-.9.29-.9.79m-.24 2.78c0 .6.48.93 1.14.93s1.14-.33 1.14-.93c0-.59-.48-.92-1.14-.92s-1.14.32-1.14.92",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(Calender2Icon);
export default ForwardRef;