@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.57 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const CalenderWithNumberIcon = ({
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 0M12.723 13.75c.567 0 1.027.46 1.027 1.027v.446c0 .567-.46 1.027-1.027 1.027h-1.446c-.567 0-1.027-.46-1.027-1.027v-.446c0-.567.46-1.027 1.027-1.027zM12.254 9.75l.105.005c.518.053.923.49.923 1.022v.446c0 .567-.46 1.027-1.028 1.027h-.611c-.568 0-1.027-.46-1.028-1.027v-.446c0-.567.46-1.027 1.028-1.027z"
}), /*#__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.01zM11.643 8.25a2.53 2.53 0 0 0-2.528 2.527v.446c0 .604.213 1.16.568 1.594a2.52 2.52 0 0 0-.933 1.96v.446a2.53 2.53 0 0 0 2.527 2.527h1.446a2.53 2.53 0 0 0 2.527-2.527v-.446c0-.82-.393-1.548-.999-2.01.331-.427.531-.962.531-1.544v-.446a2.53 2.53 0 0 0-2.27-2.514l-.258-.013z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(CalenderWithNumberIcon);
export default ForwardRef;