@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.14 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CalenderWithNumber1Icon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3.75 9.25h16.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12.125 12h-.333a1.5 1.5 0 1 0 0 3h.333a1.5 1.5 0 0 0 0-3M12.5 15h-1a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 0 0-3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M21 15.189V8.262c0-2.354-2-4.212-5-4.212L8 4c-3 .05-5 1.908-5 4.262v6.927m18-6.154v7.478A4.493 4.493 0 0 1 16.5 21h-9A4.493 4.493 0 0 1 3 16.513v-4.487M8 5.5v-3M16 5.5v-3"
}));
const ForwardRef = forwardRef(CalenderWithNumber1Icon);
module.exports = ForwardRef;