@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.32 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CalenderIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M7.25 5.25v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0M15.25 5.25v-3a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M14.25 3.041V5.25a1.75 1.75 0 1 0 3.5 0V3.272c2.406.634 4 2.573 4 4.992v8.735c0 3-2.313 5.501-5.25 5.501h-9c-2.937 0-5.25-2.502-5.25-5.501V8.264c0-2.422 1.596-4.357 4-5.019V5.25a1.75 1.75 0 1 0 3.5 0V3.01zM8.795 15.448a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59m4 0a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59m4 0a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59m-8-5a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59m4 0a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59m4 0a1.126 1.126 0 1 0 0 1.59 1.126 1.126 0 0 0 0-1.59",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(CalenderIcon);
module.exports = ForwardRef;