@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.02 kB
JavaScript
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",
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", {
d: "M15 3.37c1.42-.974 3.403-.42 4.12 1.152l1.566 3.44a2.7 2.7 0 0 1-1.88 3.764l-5.44 1.225a2.8 2.8 0 0 1-1.6-.113l5.05 7.502a.746.746 0 0 1-.204 1.038.754.754 0 0 1-1.042-.208l-4.675-6.946-3.298 6.855a.75.75 0 1 1-1.352-.65l3.599-7.48-3.095 1.227c-.506.2-1.049.182-1.521-.01l-.334.146a1.304 1.304 0 0 1-1.702-.653l-.033-.072a1.253 1.253 0 0 1 .643-1.673l.216-.095a1.97 1.97 0 0 1 1.056-1.293l4.02-1.94q.087-.042.175-.075a2.69 2.69 0 0 1 1.16-2.003z"
}));
const ForwardRef = forwardRef(TelescopeIcon);
module.exports = ForwardRef;