UNPKG

@astraicons/react

Version:

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

30 lines 1.21 kB
const React = require("react"); const { forwardRef } = require("react"); const TelescopeIcon = ({ 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", strokeLinejoin: "round", d: "m6.92 20.754 3.904-8.113m5.367 8.114-5.368-7.975", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "m5.087 12.171-.976.425a.52.52 0 0 0-.265.691l.033.073c.12.265.435.386.703.27l.975-.425", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "M9.87 9.044 5.41 11.197a1.233 1.233 0 0 0-.587 1.628 1.284 1.284 0 0 0 1.636.658l4.6-1.823M15.436 3.984l-4.572 3.138a1.96 1.96 0 0 0-.673 2.435l.696 1.527a2.04 2.04 0 0 0 2.301 1.14l5.443-1.225a1.963 1.963 0 0 0 1.366-2.737l-1.567-3.44c-.521-1.144-1.962-1.547-2.994-.838Z" })); const ForwardRef = forwardRef(TelescopeIcon); module.exports = ForwardRef;