@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 976 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const FutureIcon = ({
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.5zm-.306-11.576.056 3.339a.75.75 0 0 0 1.5-.026l-.07-4.128a1.627 1.627 0 0 0-1.647-1.609l-4.046.072a.75.75 0 0 0 .026 1.5l2.976-.053-4.543 4.978a.75.75 0 0 0 1.108 1.01z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(FutureIcon);
module.exports = ForwardRef;