UNPKG

@astraicons/react

Version:

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

28 lines 992 B
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", 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", { d: "M5 17.4V7a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10.835A3.166 3.166 0 0 1 17.835 21H15.5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M11 7.072 15.046 7a.877.877 0 0 1 .884.871L16 12m-6 1.252 5.251-5.754" }), /*#__PURE__*/React.createElement("path", { d: "M3 19.5A1.5 1.5 0 0 1 4.5 18h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 3 19.5Z" })); const ForwardRef = forwardRef(FutureIcon); module.exports = ForwardRef;