@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.15 kB
JavaScript
const React = require("react");
function CalenderWithNumberIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M15 3H9m8 0c2.761 0 5 2.127 5 4.75v7.719C22 19.076 18.922 22 15.125 22h-6.25C5.078 22 2 19.076 2 15.469V7.75C2 5.127 4.239 3 7 3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8 4V2M16 4V2"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.47 10.935c0-.951.849-1.35 1.508-1.35.66 0 1.55.347 1.55 1.35s-.928 1.274-1.55 1.274-1.508-.323-1.508-1.274ZM10.117 13.941c0-1.096 1.045-1.555 1.856-1.555s1.91.4 1.91 1.555c0 1.157-1.143 1.47-1.91 1.47s-1.856-.373-1.856-1.47Z"
}));
}
const ForwardRef = React.forwardRef(CalenderWithNumberIcon);
module.exports = ForwardRef;