UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

31 lines 1.34 kB
const React = require("react"); const { forwardRef } = require("react"); const CalenderWithNumberIcon = ({ 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", strokeLinejoin: "round", d: "M12.254 9h-.611c-.982 0-1.778.796-1.778 1.778v.444c0 .982.796 1.778 1.778 1.778h.611c.982 0 1.778-.796 1.778-1.778v-.444c0-.982-.796-1.778-1.778-1.778" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12.722 13h-1.444c-.982 0-1.778.796-1.778 1.778v.444c0 .982.796 1.778 1.778 1.778h1.444c.982 0 1.778-.796 1.778-1.778v-.444c0-.982-.796-1.778-1.778-1.778" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 15.347V8.013c0-2.492-2-4.46-5-4.46L8 3.5c-3 .053-5 2.02-5 4.513v7.334m18-6.516v7.918c0 2.624-2.015 4.751-4.5 4.751h-9c-2.485 0-4.5-2.127-4.5-4.75v-4.751M8 5V2M16 5V2" })); const ForwardRef = forwardRef(CalenderWithNumberIcon); module.exports = ForwardRef;