gauge icon
gauge-outline from Dither Icons by Vijay K Singh · Outline · MIT Free for personal and commercial use.
- Name
- gauge-outline
- Set
- Dither Icons
- Style
- Outline
- Viewbox
- 24×24
- License
- MIT
2 other variants in Dither Icons
The same icon in other sets
All gauge icons →Use the gauge icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID3" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><circle cx="12" cy="14.5" r="1.65" fill="#000"/></mask></defs><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M3.11348 16.88114A9.2 9.2 0 1 1 20.88652 16.88114"/><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" opacity=".6"><path stroke-width=".8" d="M6.02442 11.05L5.245 10.6"/><path stroke-width=".8" d="M8.55 8.52442L8.1 7.745"/><path stroke-width=".8" d="M12 7.6L12 6.7"/><path stroke-width=".8" d="M15.45 8.52442L15.9 7.745"/><path stroke-width=".8" d="M17.97558 11.05L18.755 10.6"/><path stroke-width="1.2" d="M8 20.5h8"/></g><g mask="url(#svgID3)"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="1.4" d="M11.39378 14.15L15.45 8.52442L12.60622 14.85Z"/></g><circle cx="12" cy="14.5" r="1.175" fill="none" stroke="currentColor" stroke-width="1.05"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.45 8.52442L15.95 7.6584" opacity="0"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".55" d="M15.81662 4.55737A10.65 10.65 0 0 1 18.70226 6.2234" opacity="0"/></g></svg>
React
import type { SVGProps } from "react";
export function DitherGaugeOutline(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID3" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><circle cx="12" cy="14.5" r="1.65" fill="#000"/></mask></defs><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.65" d="M3.11348 16.88114A9.2 9.2 0 1 1 20.88652 16.88114"/><g fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" opacity=".6"><path strokeWidth=".8" d="M6.02442 11.05L5.245 10.6"/><path strokeWidth=".8" d="M8.55 8.52442L8.1 7.745"/><path strokeWidth=".8" d="M12 7.6L12 6.7"/><path strokeWidth=".8" d="M15.45 8.52442L15.9 7.745"/><path strokeWidth=".8" d="M17.97558 11.05L18.755 10.6"/><path strokeWidth="1.2" d="M8 20.5h8"/></g><g mask="url(#svgID3)"><path fill="none" stroke="currentColor" strokeLinejoin="round" strokeWidth="1.4" d="M11.39378 14.15L15.45 8.52442L12.60622 14.85Z"/></g><circle cx="12" cy="14.5" r="1.175" fill="none" stroke="currentColor" strokeWidth="1.05"/><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" d="M15.45 8.52442L15.95 7.6584" opacity="0"/><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth=".55" d="M15.81662 4.55737A10.65 10.65 0 0 1 18.70226 6.2234" opacity="0"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><defs><mask id="svgID3" width="72" height="72" x="-24" y="-24" maskUnits="userSpaceOnUse"><rect width="72" height="72" x="-24" y="-24" fill="#fff"/><circle cx="12" cy="14.5" r="1.65" fill="#000"/></mask></defs><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.65" d="M3.11348 16.88114A9.2 9.2 0 1 1 20.88652 16.88114"/><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" opacity=".6"><path stroke-width=".8" d="M6.02442 11.05L5.245 10.6"/><path stroke-width=".8" d="M8.55 8.52442L8.1 7.745"/><path stroke-width=".8" d="M12 7.6L12 6.7"/><path stroke-width=".8" d="M15.45 8.52442L15.9 7.745"/><path stroke-width=".8" d="M17.97558 11.05L18.755 10.6"/><path stroke-width="1.2" d="M8 20.5h8"/></g><g mask="url(#svgID3)"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="1.4" d="M11.39378 14.15L15.45 8.52442L12.60622 14.85Z"/></g><circle cx="12" cy="14.5" r="1.175" fill="none" stroke="currentColor" stroke-width="1.05"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.45 8.52442L15.95 7.6584" opacity="0"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".55" d="M15.81662 4.55737A10.65 10.65 0 0 1 18.70226 6.2234" opacity="0"/></g></svg> </template>
CSS
.icon-gauge-outline {
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%3Cg%20fill%3D%22currentColor%22%3E%3Cdefs%3E%3Cmask%20id%3D%22svgID3%22%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Crect%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20fill%3D%22%23fff%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2214.5%22%20r%3D%221.65%22%20fill%3D%22%23000%22%2F%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.65%22%20d%3D%22M3.11348%2016.88114A9.2%209.2%200%201%201%2020.88652%2016.88114%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20opacity%3D%22.6%22%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M6.02442%2011.05L5.245%2010.6%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M8.55%208.52442L8.1%207.745%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M12%207.6L12%206.7%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M15.45%208.52442L15.9%207.745%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M17.97558%2011.05L18.755%2010.6%22%2F%3E%3Cpath%20stroke-width%3D%221.2%22%20d%3D%22M8%2020.5h8%22%2F%3E%3C%2Fg%3E%3Cg%20mask%3D%22url(%23svgID3)%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%20d%3D%22M11.39378%2014.15L15.45%208.52442L12.60622%2014.85Z%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2214.5%22%20r%3D%221.175%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.05%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M15.45%208.52442L15.95%207.6584%22%20opacity%3D%220%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.55%22%20d%3D%22M15.81662%204.55737A10.65%2010.65%200%200%201%2018.70226%206.2234%22%20opacity%3D%220%22%2F%3E%3C%2Fg%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%3Cg%20fill%3D%22currentColor%22%3E%3Cdefs%3E%3Cmask%20id%3D%22svgID3%22%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20maskUnits%3D%22userSpaceOnUse%22%3E%3Crect%20width%3D%2272%22%20height%3D%2272%22%20x%3D%22-24%22%20y%3D%22-24%22%20fill%3D%22%23fff%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2214.5%22%20r%3D%221.65%22%20fill%3D%22%23000%22%2F%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.65%22%20d%3D%22M3.11348%2016.88114A9.2%209.2%200%201%201%2020.88652%2016.88114%22%2F%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20opacity%3D%22.6%22%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M6.02442%2011.05L5.245%2010.6%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M8.55%208.52442L8.1%207.745%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M12%207.6L12%206.7%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M15.45%208.52442L15.9%207.745%22%2F%3E%3Cpath%20stroke-width%3D%22.8%22%20d%3D%22M17.97558%2011.05L18.755%2010.6%22%2F%3E%3Cpath%20stroke-width%3D%221.2%22%20d%3D%22M8%2020.5h8%22%2F%3E%3C%2Fg%3E%3Cg%20mask%3D%22url(%23svgID3)%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.4%22%20d%3D%22M11.39378%2014.15L15.45%208.52442L12.60622%2014.85Z%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2214.5%22%20r%3D%221.175%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.05%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M15.45%208.52442L15.95%207.6584%22%20opacity%3D%220%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%22.55%22%20d%3D%22M15.81662%204.55737A10.65%2010.65%200%200%201%2018.70226%206.2234%22%20opacity%3D%220%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/dither/gauge-outline.svg?color=%231a73e8&size=48