@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.06 kB
JavaScript
import * as React from "react";
function CalenderIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8 1.25a.75.75 0 0 1 .75.75v1h-1.5V2A.75.75 0 0 1 8 1.25M16.75 3H17c2.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 3h.25v1a.75.75 0 0 0 1.5 0V3h6.5v1a.75.75 0 0 0 1.5 0zm0 0h-1.5V2a.75.75 0 0 1 1.5 0zM6 9.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0M7.5 15a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m7.5 1.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0M16.5 8a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(CalenderIcon);
export default ForwardRef;