UNPKG

@astraicons/react

Version:

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

50 lines 1.28 kB
const React = require("react"); function CalenderIcon({ 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("rect", { width: 2, height: 2, x: 7, y: 8, rx: 1 }), /*#__PURE__*/React.createElement("rect", { width: 2, height: 2, x: 7, y: 15, rx: 1 }), /*#__PURE__*/React.createElement("rect", { width: 2, height: 2, x: 15, y: 15, rx: 1 }), /*#__PURE__*/React.createElement("rect", { width: 2, height: 2, x: 15, y: 8, rx: 1 })); } const ForwardRef = React.forwardRef(CalenderIcon); module.exports = ForwardRef;