@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 779 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function CalendarIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "calendar",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M5.5 18.5H19.5V6.5H5.5V18.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M16.5 8V4M8.5 8V4M8 12.5H10M8 15.5H10M11.5 12.5H13.5M11.5 15.5H13.5M15 12.5H17M15 15.5H17M12.5 8V4M5.5 9.5H19.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { CalendarIcon, CalendarIcon as default };
//# sourceMappingURL=Calendar.js.map