@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
26 lines • 988 B
JavaScript
const React = require("react");
function Calendar06Icon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M7.33 7.614h10.12M6.873 2v1.832m0 0H17.5m-10.625 0c-1.76 0-3.187 1.451-3.187 3.242v10.809c0 1.79 1.428 3.242 3.188 3.242H17.5c1.76 0 3.187-1.452 3.187-3.243V7.074c0-1.79-1.428-3.242-3.188-3.242M17.5 2v1.832m-7.436 13.51v-6.485l-2.125 1.621m7.968 4.864v-6.485l-2.125 1.621"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Calendar06Icon);
module.exports = ForwardRef;