@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 986 B
JavaScript
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",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.75 7.25h6.5M9.75 10.25h4.5M9.75 13.25h1.5",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "M5 18V7.5C5 5.015 6.896 3 9.235 3h7.53C19.104 3 21 5.015 21 7.5v9.561a4.16 4.16 0 0 1-.788 2.448l-.072.1a3.4 3.4 0 0 1-1.634 1.217 3.2 3.2 0 0 1-1.038.174H13M3 19.5A1.5 1.5 0 0 0 4.5 21h11a1.5 1.5 0 0 0 0-3h-11A1.5 1.5 0 0 0 3 19.5Z"
}));
const ForwardRef = forwardRef(FutureHistoryIcon);
export default ForwardRef;