@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.18 kB
JavaScript
import * as React from "react";
import { forwardRef } from "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.113M16.192 20.755l-5.369-7.975"
}), /*#__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"
}), /*#__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);
export default ForwardRef;