UNPKG

@astraicons/react

Version:

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

22 lines 1.04 kB
import * as React from "react"; import { forwardRef } from "react"; const FutureHistoryIcon = ({ 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", { fillRule: "evenodd", d: "M9 2.25A4.75 4.75 0 0 0 4.25 7v10.038a.9.9 0 0 0-.15.247 2.25 2.25 0 0 0 .4 4.465h13.334a3.915 3.915 0 0 0 3.916-3.915V7A4.75 4.75 0 0 0 17 2.25zm6.5 18a.75.75 0 0 0 0-1.5h-11a.75.75 0 0 0 0 1.5zM9 7.25a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 9 7.25m0 3a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75m0 3a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75", clipRule: "evenodd" })); const ForwardRef = forwardRef(FutureHistoryIcon); export default ForwardRef;