telescope icon

telescope from Unicons by Iconscout · Line · Education · Apache-2.0 Free for personal and commercial use.

Name
telescope
Set
Unicons
Style
Line
Category
Education
Viewbox
24×24
License
Apache 2.0

The same icon in other sets

More education icons from Unicons

Use the telescope icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m21.9 7.59l-1-3.87a3 3 0 0 0-3.71-2.12l-1.93.52a1 1 0 0 0-.71 1.23l.26 1L4.19 7.16a1 1 0 0 0-.71 1.22l.26 1l-1 .26a1 1 0 0 0 .25 2a1 1 0 0 0 .26 0l1-.27l.26 1a1 1 0 0 0 .46.6a1 1 0 0 0 .5.14a.8.8 0 0 0 .26 0L9 12.08v.42a2.9 2.9 0 0 0 .3 1.28l-5 5a1 1 0 0 0 1.41 1.42l5-5l.28.11v6.19a1 1 0 0 0 2 0v-6.18a3 3 0 0 0 .29-.12l5 5a1 1 0 1 0 1.41-1.42l-5-5A3.1 3.1 0 0 0 15 12.5v-2l1.35-.36l.25 1a1 1 0 0 0 1 .74h.26l1.93-.52a3 3 0 0 0 2.11-3.77M13 12.5a1 1 0 0 1-.28.69a1 1 0 0 1-.69.28a1 1 0 0 1-.7-.29a1 1 0 0 1-.29-.7v-1L13 11Zm-6.81-1.74l-.52-1.93l9.66-2.59l.26 1l.26 1Zm13.68-1.9a1 1 0 0 1-.61.47l-1 .26l-.78-2.9L17 4.76l-.26-1l1-.26a1 1 0 0 1 1.23.71l1 3.87a1 1 0 0 1-.1.78"/></svg>

React

import type { SVGProps } from "react";

export function UilTelescope(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m21.9 7.59l-1-3.87a3 3 0 0 0-3.71-2.12l-1.93.52a1 1 0 0 0-.71 1.23l.26 1L4.19 7.16a1 1 0 0 0-.71 1.22l.26 1l-1 .26a1 1 0 0 0 .25 2a1 1 0 0 0 .26 0l1-.27l.26 1a1 1 0 0 0 .46.6a1 1 0 0 0 .5.14a.8.8 0 0 0 .26 0L9 12.08v.42a2.9 2.9 0 0 0 .3 1.28l-5 5a1 1 0 0 0 1.41 1.42l5-5l.28.11v6.19a1 1 0 0 0 2 0v-6.18a3 3 0 0 0 .29-.12l5 5a1 1 0 1 0 1.41-1.42l-5-5A3.1 3.1 0 0 0 15 12.5v-2l1.35-.36l.25 1a1 1 0 0 0 1 .74h.26l1.93-.52a3 3 0 0 0 2.11-3.77M13 12.5a1 1 0 0 1-.28.69a1 1 0 0 1-.69.28a1 1 0 0 1-.7-.29a1 1 0 0 1-.29-.7v-1L13 11Zm-6.81-1.74l-.52-1.93l9.66-2.59l.26 1l.26 1Zm13.68-1.9a1 1 0 0 1-.61.47l-1 .26l-.78-2.9L17 4.76l-.26-1l1-.26a1 1 0 0 1 1.23.71l1 3.87a1 1 0 0 1-.1.78"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m21.9 7.59l-1-3.87a3 3 0 0 0-3.71-2.12l-1.93.52a1 1 0 0 0-.71 1.23l.26 1L4.19 7.16a1 1 0 0 0-.71 1.22l.26 1l-1 .26a1 1 0 0 0 .25 2a1 1 0 0 0 .26 0l1-.27l.26 1a1 1 0 0 0 .46.6a1 1 0 0 0 .5.14a.8.8 0 0 0 .26 0L9 12.08v.42a2.9 2.9 0 0 0 .3 1.28l-5 5a1 1 0 0 0 1.41 1.42l5-5l.28.11v6.19a1 1 0 0 0 2 0v-6.18a3 3 0 0 0 .29-.12l5 5a1 1 0 1 0 1.41-1.42l-5-5A3.1 3.1 0 0 0 15 12.5v-2l1.35-.36l.25 1a1 1 0 0 0 1 .74h.26l1.93-.52a3 3 0 0 0 2.11-3.77M13 12.5a1 1 0 0 1-.28.69a1 1 0 0 1-.69.28a1 1 0 0 1-.7-.29a1 1 0 0 1-.29-.7v-1L13 11Zm-6.81-1.74l-.52-1.93l9.66-2.59l.26 1l.26 1Zm13.68-1.9a1 1 0 0 1-.61.47l-1 .26l-.78-2.9L17 4.76l-.26-1l1-.26a1 1 0 0 1 1.23.71l1 3.87a1 1 0 0 1-.1.78"/></svg>
</template>

CSS

.icon-telescope {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m21.9%207.59l-1-3.87a3%203%200%200%200-3.71-2.12l-1.93.52a1%201%200%200%200-.71%201.23l.26%201L4.19%207.16a1%201%200%200%200-.71%201.22l.26%201l-1%20.26a1%201%200%200%200%20.25%202a1%201%200%200%200%20.26%200l1-.27l.26%201a1%201%200%200%200%20.46.6a1%201%200%200%200%20.5.14a.8.8%200%200%200%20.26%200L9%2012.08v.42a2.9%202.9%200%200%200%20.3%201.28l-5%205a1%201%200%200%200%201.41%201.42l5-5l.28.11v6.19a1%201%200%200%200%202%200v-6.18a3%203%200%200%200%20.29-.12l5%205a1%201%200%201%200%201.41-1.42l-5-5A3.1%203.1%200%200%200%2015%2012.5v-2l1.35-.36l.25%201a1%201%200%200%200%201%20.74h.26l1.93-.52a3%203%200%200%200%202.11-3.77M13%2012.5a1%201%200%200%201-.28.69a1%201%200%200%201-.69.28a1%201%200%200%201-.7-.29a1%201%200%200%201-.29-.7v-1L13%2011Zm-6.81-1.74l-.52-1.93l9.66-2.59l.26%201l.26%201Zm13.68-1.9a1%201%200%200%201-.61.47l-1%20.26l-.78-2.9L17%204.76l-.26-1l1-.26a1%201%200%200%201%201.23.71l1%203.87a1%201%200%200%201-.1.78%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m21.9%207.59l-1-3.87a3%203%200%200%200-3.71-2.12l-1.93.52a1%201%200%200%200-.71%201.23l.26%201L4.19%207.16a1%201%200%200%200-.71%201.22l.26%201l-1%20.26a1%201%200%200%200%20.25%202a1%201%200%200%200%20.26%200l1-.27l.26%201a1%201%200%200%200%20.46.6a1%201%200%200%200%20.5.14a.8.8%200%200%200%20.26%200L9%2012.08v.42a2.9%202.9%200%200%200%20.3%201.28l-5%205a1%201%200%200%200%201.41%201.42l5-5l.28.11v6.19a1%201%200%200%200%202%200v-6.18a3%203%200%200%200%20.29-.12l5%205a1%201%200%201%200%201.41-1.42l-5-5A3.1%203.1%200%200%200%2015%2012.5v-2l1.35-.36l.25%201a1%201%200%200%200%201%20.74h.26l1.93-.52a3%203%200%200%200%202.11-3.77M13%2012.5a1%201%200%200%201-.28.69a1%201%200%200%201-.69.28a1%201%200%200%201-.7-.29a1%201%200%200%201-.29-.7v-1L13%2011Zm-6.81-1.74l-.52-1.93l9.66-2.59l.26%201l.26%201Zm13.68-1.9a1%201%200%200%201-.61.47l-1%20.26l-.78-2.9L17%204.76l-.26-1l1-.26a1%201%200%200%201%201.23.71l1%203.87a1%201%200%200%201-.1.78%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/uil/telescope.svg?color=%231a73e8&size=48