UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

26 lines 1.35 kB
const React = require("react"); const { forwardRef } = require("react"); const CalenderWithNumber2Icon = ({ 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.5 15.75a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1 0-1.5zM12.125 12.75a.75.75 0 0 1 0 1.5h-.333a.75.75 0 0 1 0-1.5z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M21.75 16.999c0 3-2.313 5.501-5.25 5.501h-9c-2.937 0-5.25-2.502-5.25-5.501V10.25h19.5zm-9.958-5.749a2.25 2.25 0 0 0-2.25 2.25c0 .502.167.964.444 1.338A2.25 2.25 0 0 0 11.5 18.75h1a2.25 2.25 0 0 0 1.464-3.957 2.25 2.25 0 0 0-1.839-3.543z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { d: "M14.25 3.041V5.25a1.75 1.75 0 1 0 3.5 0V3.272c2.406.634 4 2.573 4 4.992v.486H2.25v-.486c0-2.422 1.596-4.357 4-5.019V5.25a1.75 1.75 0 1 0 3.5 0V3.01z" })); const ForwardRef = forwardRef(CalenderWithNumber2Icon); module.exports = ForwardRef;