sensor occupied icon

sensor-occupied-rounded from Material Symbols by Google · Rounded · Household · Apache-2.0 Free for personal and commercial use.

Name
sensor-occupied-rounded
Set
Material Symbols
Style
Rounded
Category
Household
Viewbox
24×24
License
Apache 2.0

3 other variants in Material Symbols

The same icon in other sets

More household icons from Material Symbols

Use the sensor occupied icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 11q-1.25 0-2.125-.875T9 8t.875-2.125T12 5t2.125.875T15 8t-.875 2.125T12 11m-6 4.1q0-.525.263-.987t.712-.738q1.125-.65 2.375-1.012T12 12t2.65.363t2.375 1.012q.45.275.713.738T18 15.1q0 .8-.55 1.35T16.1 17H7.9q-.8 0-1.35-.55T6 15.1M16.775 3.225q-.375-.2-.537-.588t.012-.787t.55-.55t.75.05q1.625.85 2.9 2.138T22.6 6.4q.2.375.075.775t-.525.575t-.787.013t-.588-.538q-.7-1.275-1.712-2.287t-2.288-1.713m-9.55 0q-1.275.7-2.287 1.713T3.225 7.225q-.2.375-.587.538T1.85 7.75t-.525-.575T1.4 6.4q.875-1.6 2.15-2.888t2.9-2.137q.375-.2.763-.062t.562.537t0 .788t-.55.587m-4 13.55q.7 1.275 1.713 2.288t2.287 1.712q.375.2.55.588t0 .787t-.575.538t-.8-.063q-1.6-.85-2.887-2.15T1.375 17.55q-.2-.375-.062-.763t.537-.562t.788 0t.587.55m17.55 0q.2-.375.588-.55t.787 0t.55.563t-.05.762q-.85 1.625-2.137 2.9T17.6 22.6q-.375.2-.775.075t-.575-.525t-.012-.787t.537-.588q1.275-.7 2.288-1.712t1.712-2.288"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsSensorOccupiedRounded(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="M12 11q-1.25 0-2.125-.875T9 8t.875-2.125T12 5t2.125.875T15 8t-.875 2.125T12 11m-6 4.1q0-.525.263-.987t.712-.738q1.125-.65 2.375-1.012T12 12t2.65.363t2.375 1.012q.45.275.713.738T18 15.1q0 .8-.55 1.35T16.1 17H7.9q-.8 0-1.35-.55T6 15.1M16.775 3.225q-.375-.2-.537-.588t.012-.787t.55-.55t.75.05q1.625.85 2.9 2.138T22.6 6.4q.2.375.075.775t-.525.575t-.787.013t-.588-.538q-.7-1.275-1.712-2.287t-2.288-1.713m-9.55 0q-1.275.7-2.287 1.713T3.225 7.225q-.2.375-.587.538T1.85 7.75t-.525-.575T1.4 6.4q.875-1.6 2.15-2.888t2.9-2.137q.375-.2.763-.062t.562.537t0 .788t-.55.587m-4 13.55q.7 1.275 1.713 2.288t2.287 1.712q.375.2.55.588t0 .787t-.575.538t-.8-.063q-1.6-.85-2.887-2.15T1.375 17.55q-.2-.375-.062-.763t.537-.562t.788 0t.587.55m17.55 0q.2-.375.588-.55t.787 0t.55.563t-.05.762q-.85 1.625-2.137 2.9T17.6 22.6q-.375.2-.775.075t-.575-.525t-.012-.787t.537-.588q1.275-.7 2.288-1.712t1.712-2.288"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 11q-1.25 0-2.125-.875T9 8t.875-2.125T12 5t2.125.875T15 8t-.875 2.125T12 11m-6 4.1q0-.525.263-.987t.712-.738q1.125-.65 2.375-1.012T12 12t2.65.363t2.375 1.012q.45.275.713.738T18 15.1q0 .8-.55 1.35T16.1 17H7.9q-.8 0-1.35-.55T6 15.1M16.775 3.225q-.375-.2-.537-.588t.012-.787t.55-.55t.75.05q1.625.85 2.9 2.138T22.6 6.4q.2.375.075.775t-.525.575t-.787.013t-.588-.538q-.7-1.275-1.712-2.287t-2.288-1.713m-9.55 0q-1.275.7-2.287 1.713T3.225 7.225q-.2.375-.587.538T1.85 7.75t-.525-.575T1.4 6.4q.875-1.6 2.15-2.888t2.9-2.137q.375-.2.763-.062t.562.537t0 .788t-.55.587m-4 13.55q.7 1.275 1.713 2.288t2.287 1.712q.375.2.55.588t0 .787t-.575.538t-.8-.063q-1.6-.85-2.887-2.15T1.375 17.55q-.2-.375-.062-.763t.537-.562t.788 0t.587.55m17.55 0q.2-.375.588-.55t.787 0t.55.563t-.05.762q-.85 1.625-2.137 2.9T17.6 22.6q-.375.2-.775.075t-.575-.525t-.012-.787t.537-.588q1.275-.7 2.288-1.712t1.712-2.288"/></svg>
</template>

CSS

.icon-sensor-occupied-rounded {
  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%22M12%2011q-1.25%200-2.125-.875T9%208t.875-2.125T12%205t2.125.875T15%208t-.875%202.125T12%2011m-6%204.1q0-.525.263-.987t.712-.738q1.125-.65%202.375-1.012T12%2012t2.65.363t2.375%201.012q.45.275.713.738T18%2015.1q0%20.8-.55%201.35T16.1%2017H7.9q-.8%200-1.35-.55T6%2015.1M16.775%203.225q-.375-.2-.537-.588t.012-.787t.55-.55t.75.05q1.625.85%202.9%202.138T22.6%206.4q.2.375.075.775t-.525.575t-.787.013t-.588-.538q-.7-1.275-1.712-2.287t-2.288-1.713m-9.55%200q-1.275.7-2.287%201.713T3.225%207.225q-.2.375-.587.538T1.85%207.75t-.525-.575T1.4%206.4q.875-1.6%202.15-2.888t2.9-2.137q.375-.2.763-.062t.562.537t0%20.788t-.55.587m-4%2013.55q.7%201.275%201.713%202.288t2.287%201.712q.375.2.55.588t0%20.787t-.575.538t-.8-.063q-1.6-.85-2.887-2.15T1.375%2017.55q-.2-.375-.062-.763t.537-.562t.788%200t.587.55m17.55%200q.2-.375.588-.55t.787%200t.55.563t-.05.762q-.85%201.625-2.137%202.9T17.6%2022.6q-.375.2-.775.075t-.575-.525t-.012-.787t.537-.588q1.275-.7%202.288-1.712t1.712-2.288%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%22M12%2011q-1.25%200-2.125-.875T9%208t.875-2.125T12%205t2.125.875T15%208t-.875%202.125T12%2011m-6%204.1q0-.525.263-.987t.712-.738q1.125-.65%202.375-1.012T12%2012t2.65.363t2.375%201.012q.45.275.713.738T18%2015.1q0%20.8-.55%201.35T16.1%2017H7.9q-.8%200-1.35-.55T6%2015.1M16.775%203.225q-.375-.2-.537-.588t.012-.787t.55-.55t.75.05q1.625.85%202.9%202.138T22.6%206.4q.2.375.075.775t-.525.575t-.787.013t-.588-.538q-.7-1.275-1.712-2.287t-2.288-1.713m-9.55%200q-1.275.7-2.287%201.713T3.225%207.225q-.2.375-.587.538T1.85%207.75t-.525-.575T1.4%206.4q.875-1.6%202.15-2.888t2.9-2.137q.375-.2.763-.062t.562.537t0%20.788t-.55.587m-4%2013.55q.7%201.275%201.713%202.288t2.287%201.712q.375.2.55.588t0%20.787t-.575.538t-.8-.063q-1.6-.85-2.887-2.15T1.375%2017.55q-.2-.375-.062-.763t.537-.562t.788%200t.587.55m17.55%200q.2-.375.588-.55t.787%200t.55.563t-.05.762q-.85%201.625-2.137%202.9T17.6%2022.6q-.375.2-.775.075t-.575-.525t-.012-.787t.537-.588q1.275-.7%202.288-1.712t1.712-2.288%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/sensor-occupied-rounded.svg?color=%231a73e8&size=48