gauge from Prime Icons by PrimeTek · Regular · MIT Free for personal and commercial use.

Name
gauge
Set
Prime Icons
Style
Regular
Viewbox
24×24
License
MIT

The same icon in other sets

Use the gauge icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m7.15 8.073l1.383 1.4a.75.75 0 1 1-1.066 1.054l-1.455-1.47c-1.033 1.116-1.6 2.47-1.91 3.63c-.162.61-.25 1.154-.297 1.563H5.5a.75.75 0 0 1 0 1.5H3.75V17c0 .138.112.25.25.25h3.69l5.28-5.28a.75.75 0 1 1 1.06 1.06l-4.22 4.22H20a.25.25 0 0 0 .25-.25v-1.25H18.5a.75.75 0 0 1 0-1.5h1.695a11 11 0 0 0-.075-.533a10.3 10.3 0 0 0-.916-2.882a7.7 7.7 0 0 0-1.208-1.77L16.53 10.53a.75.75 0 1 1-1.06-1.06l1.39-1.39l-.073-.05c-.991-.66-2.299-1.148-4.037-1.257V8.5a.75.75 0 0 1-1.5 0V6.773c-1.77.111-3.096.614-4.1 1.3M21 15h.75v-.038l-.003-.088a12 12 0 0 0-.148-1.403a11.8 11.8 0 0 0-1.053-3.306c-.607-1.214-1.53-2.451-2.927-3.383C16.217 5.847 14.381 5.25 12 5.25c-2.91 0-4.998.893-6.472 2.186c-1.664 1.46-2.476 3.366-2.875 4.865c-.2.755-.301 1.42-.352 1.9a10 10 0 0 0-.05.778l-.001.014v.006L3 15h-.75v2c0 .966.784 1.75 1.75 1.75h16A1.75 1.75 0 0 0 21.75 17v-2z" clip-rule="evenodd"/></svg>

React

import type { SVGProps } from "react";

export function PrimeGauge(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" fillRule="evenodd" d="m7.15 8.073l1.383 1.4a.75.75 0 1 1-1.066 1.054l-1.455-1.47c-1.033 1.116-1.6 2.47-1.91 3.63c-.162.61-.25 1.154-.297 1.563H5.5a.75.75 0 0 1 0 1.5H3.75V17c0 .138.112.25.25.25h3.69l5.28-5.28a.75.75 0 1 1 1.06 1.06l-4.22 4.22H20a.25.25 0 0 0 .25-.25v-1.25H18.5a.75.75 0 0 1 0-1.5h1.695a11 11 0 0 0-.075-.533a10.3 10.3 0 0 0-.916-2.882a7.7 7.7 0 0 0-1.208-1.77L16.53 10.53a.75.75 0 1 1-1.06-1.06l1.39-1.39l-.073-.05c-.991-.66-2.299-1.148-4.037-1.257V8.5a.75.75 0 0 1-1.5 0V6.773c-1.77.111-3.096.614-4.1 1.3M21 15h.75v-.038l-.003-.088a12 12 0 0 0-.148-1.403a11.8 11.8 0 0 0-1.053-3.306c-.607-1.214-1.53-2.451-2.927-3.383C16.217 5.847 14.381 5.25 12 5.25c-2.91 0-4.998.893-6.472 2.186c-1.664 1.46-2.476 3.366-2.875 4.865c-.2.755-.301 1.42-.352 1.9a10 10 0 0 0-.05.778l-.001.014v.006L3 15h-.75v2c0 .966.784 1.75 1.75 1.75h16A1.75 1.75 0 0 0 21.75 17v-2z" clipRule="evenodd"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="m7.15 8.073l1.383 1.4a.75.75 0 1 1-1.066 1.054l-1.455-1.47c-1.033 1.116-1.6 2.47-1.91 3.63c-.162.61-.25 1.154-.297 1.563H5.5a.75.75 0 0 1 0 1.5H3.75V17c0 .138.112.25.25.25h3.69l5.28-5.28a.75.75 0 1 1 1.06 1.06l-4.22 4.22H20a.25.25 0 0 0 .25-.25v-1.25H18.5a.75.75 0 0 1 0-1.5h1.695a11 11 0 0 0-.075-.533a10.3 10.3 0 0 0-.916-2.882a7.7 7.7 0 0 0-1.208-1.77L16.53 10.53a.75.75 0 1 1-1.06-1.06l1.39-1.39l-.073-.05c-.991-.66-2.299-1.148-4.037-1.257V8.5a.75.75 0 0 1-1.5 0V6.773c-1.77.111-3.096.614-4.1 1.3M21 15h.75v-.038l-.003-.088a12 12 0 0 0-.148-1.403a11.8 11.8 0 0 0-1.053-3.306c-.607-1.214-1.53-2.451-2.927-3.383C16.217 5.847 14.381 5.25 12 5.25c-2.91 0-4.998.893-6.472 2.186c-1.664 1.46-2.476 3.366-2.875 4.865c-.2.755-.301 1.42-.352 1.9a10 10 0 0 0-.05.778l-.001.014v.006L3 15h-.75v2c0 .966.784 1.75 1.75 1.75h16A1.75 1.75 0 0 0 21.75 17v-2z" clip-rule="evenodd"/></svg>
</template>

CSS

.icon-gauge {
  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%20fill-rule%3D%22evenodd%22%20d%3D%22m7.15%208.073l1.383%201.4a.75.75%200%201%201-1.066%201.054l-1.455-1.47c-1.033%201.116-1.6%202.47-1.91%203.63c-.162.61-.25%201.154-.297%201.563H5.5a.75.75%200%200%201%200%201.5H3.75V17c0%20.138.112.25.25.25h3.69l5.28-5.28a.75.75%200%201%201%201.06%201.06l-4.22%204.22H20a.25.25%200%200%200%20.25-.25v-1.25H18.5a.75.75%200%200%201%200-1.5h1.695a11%2011%200%200%200-.075-.533a10.3%2010.3%200%200%200-.916-2.882a7.7%207.7%200%200%200-1.208-1.77L16.53%2010.53a.75.75%200%201%201-1.06-1.06l1.39-1.39l-.073-.05c-.991-.66-2.299-1.148-4.037-1.257V8.5a.75.75%200%200%201-1.5%200V6.773c-1.77.111-3.096.614-4.1%201.3M21%2015h.75v-.038l-.003-.088a12%2012%200%200%200-.148-1.403a11.8%2011.8%200%200%200-1.053-3.306c-.607-1.214-1.53-2.451-2.927-3.383C16.217%205.847%2014.381%205.25%2012%205.25c-2.91%200-4.998.893-6.472%202.186c-1.664%201.46-2.476%203.366-2.875%204.865c-.2.755-.301%201.42-.352%201.9a10%2010%200%200%200-.05.778l-.001.014v.006L3%2015h-.75v2c0%20.966.784%201.75%201.75%201.75h16A1.75%201.75%200%200%200%2021.75%2017v-2z%22%20clip-rule%3D%22evenodd%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%20fill-rule%3D%22evenodd%22%20d%3D%22m7.15%208.073l1.383%201.4a.75.75%200%201%201-1.066%201.054l-1.455-1.47c-1.033%201.116-1.6%202.47-1.91%203.63c-.162.61-.25%201.154-.297%201.563H5.5a.75.75%200%200%201%200%201.5H3.75V17c0%20.138.112.25.25.25h3.69l5.28-5.28a.75.75%200%201%201%201.06%201.06l-4.22%204.22H20a.25.25%200%200%200%20.25-.25v-1.25H18.5a.75.75%200%200%201%200-1.5h1.695a11%2011%200%200%200-.075-.533a10.3%2010.3%200%200%200-.916-2.882a7.7%207.7%200%200%200-1.208-1.77L16.53%2010.53a.75.75%200%201%201-1.06-1.06l1.39-1.39l-.073-.05c-.991-.66-2.299-1.148-4.037-1.257V8.5a.75.75%200%200%201-1.5%200V6.773c-1.77.111-3.096.614-4.1%201.3M21%2015h.75v-.038l-.003-.088a12%2012%200%200%200-.148-1.403a11.8%2011.8%200%200%200-1.053-3.306c-.607-1.214-1.53-2.451-2.927-3.383C16.217%205.847%2014.381%205.25%2012%205.25c-2.91%200-4.998.893-6.472%202.186c-1.664%201.46-2.476%203.366-2.875%204.865c-.2.755-.301%201.42-.352%201.9a10%2010%200%200%200-.05.778l-.001.014v.006L3%2015h-.75v2c0%20.966.784%201.75%201.75%201.75h16A1.75%201.75%200%200%200%2021.75%2017v-2z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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