round noise control off icon

round-noise-control-off from Google Material Icons by Material Design Authors · Baseline · Action · Apache-2.0 Free for personal and commercial use.

Name
round-noise-control-off
Set
Google Material Icons
Style
Baseline
Category
Action
Viewbox
24×24
License
Apache 2.0

More action icons from Google Material Icons

Use the round noise control off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4c1.2 0 2.33.26 3.35.74c.36.17.79.12 1.07-.17l.06-.06c.47-.47.35-1.29-.25-1.57C14.95 2.34 13.51 2 12 2s-2.95.34-4.24.94c-.6.28-.72 1.1-.25 1.57l.06.06c.28.28.71.34 1.07.17C9.67 4.26 10.8 4 12 4m8 8c0 1.2-.26 2.33-.74 3.35c-.17.36-.12.79.17 1.07l.06.06c.47.47 1.29.35 1.57-.25c.6-1.28.94-2.72.94-4.23s-.34-2.95-.94-4.24c-.28-.6-1.1-.72-1.57-.25l-.06.06c-.28.28-.34.71-.17 1.07c.48 1.03.74 2.16.74 3.36m-8 8c-1.2 0-2.33-.26-3.35-.74c-.36-.17-.79-.12-1.07.17l-.06.06c-.47.47-.35 1.29.25 1.57c1.28.6 2.72.94 4.23.94s2.95-.34 4.24-.94c.6-.28.72-1.1.25-1.57l-.06-.06a.94.94 0 0 0-1.07-.17c-1.03.48-2.16.74-3.36.74m-8-8c0-1.2.26-2.33.74-3.35c.17-.36.12-.79-.17-1.07l-.06-.07c-.47-.47-1.28-.35-1.57.25a10.04 10.04 0 0 0 0 8.48c.28.6 1.1.72 1.57.25l.06-.06c.28-.28.34-.71.17-1.07A7.9 7.9 0 0 1 4 12m7.5-6c-2.89 0-5.15 2.74-4.33 5.76c.22.8.68 1.51 1.27 2.1l1.27 1.27c.15.16.28.38.4.71c.41 1.13 1.38 2.04 2.58 2.16a3.02 3.02 0 0 0 2.93-1.53c.36-.65-.15-1.45-.9-1.45c-.34 0-.68.16-.84.47c-.16.29-.5.51-.88.51a1 1 0 0 1-.95-.68c-.15-.44-.4-1.08-.93-1.61l-1.36-1.36C9.28 11.87 9 11.19 9 10.5A2.5 2.5 0 0 1 11.5 8c.98 0 1.83.57 2.24 1.4c.18.36.52.6.91.6c.75 0 1.22-.79.89-1.46A4.48 4.48 0 0 0 11.5 6"/><circle cx="13.5" cy="12.5" r="1.5" fill="currentColor"/></svg>

React

import type { SVGProps } from "react";

export function IcRoundNoiseControlOff(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 4c1.2 0 2.33.26 3.35.74c.36.17.79.12 1.07-.17l.06-.06c.47-.47.35-1.29-.25-1.57C14.95 2.34 13.51 2 12 2s-2.95.34-4.24.94c-.6.28-.72 1.1-.25 1.57l.06.06c.28.28.71.34 1.07.17C9.67 4.26 10.8 4 12 4m8 8c0 1.2-.26 2.33-.74 3.35c-.17.36-.12.79.17 1.07l.06.06c.47.47 1.29.35 1.57-.25c.6-1.28.94-2.72.94-4.23s-.34-2.95-.94-4.24c-.28-.6-1.1-.72-1.57-.25l-.06.06c-.28.28-.34.71-.17 1.07c.48 1.03.74 2.16.74 3.36m-8 8c-1.2 0-2.33-.26-3.35-.74c-.36-.17-.79-.12-1.07.17l-.06.06c-.47.47-.35 1.29.25 1.57c1.28.6 2.72.94 4.23.94s2.95-.34 4.24-.94c.6-.28.72-1.1.25-1.57l-.06-.06a.94.94 0 0 0-1.07-.17c-1.03.48-2.16.74-3.36.74m-8-8c0-1.2.26-2.33.74-3.35c.17-.36.12-.79-.17-1.07l-.06-.07c-.47-.47-1.28-.35-1.57.25a10.04 10.04 0 0 0 0 8.48c.28.6 1.1.72 1.57.25l.06-.06c.28-.28.34-.71.17-1.07A7.9 7.9 0 0 1 4 12m7.5-6c-2.89 0-5.15 2.74-4.33 5.76c.22.8.68 1.51 1.27 2.1l1.27 1.27c.15.16.28.38.4.71c.41 1.13 1.38 2.04 2.58 2.16a3.02 3.02 0 0 0 2.93-1.53c.36-.65-.15-1.45-.9-1.45c-.34 0-.68.16-.84.47c-.16.29-.5.51-.88.51a1 1 0 0 1-.95-.68c-.15-.44-.4-1.08-.93-1.61l-1.36-1.36C9.28 11.87 9 11.19 9 10.5A2.5 2.5 0 0 1 11.5 8c.98 0 1.83.57 2.24 1.4c.18.36.52.6.91.6c.75 0 1.22-.79.89-1.46A4.48 4.48 0 0 0 11.5 6"/><circle cx="13.5" cy="12.5" r="1.5" fill="currentColor"/></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 4c1.2 0 2.33.26 3.35.74c.36.17.79.12 1.07-.17l.06-.06c.47-.47.35-1.29-.25-1.57C14.95 2.34 13.51 2 12 2s-2.95.34-4.24.94c-.6.28-.72 1.1-.25 1.57l.06.06c.28.28.71.34 1.07.17C9.67 4.26 10.8 4 12 4m8 8c0 1.2-.26 2.33-.74 3.35c-.17.36-.12.79.17 1.07l.06.06c.47.47 1.29.35 1.57-.25c.6-1.28.94-2.72.94-4.23s-.34-2.95-.94-4.24c-.28-.6-1.1-.72-1.57-.25l-.06.06c-.28.28-.34.71-.17 1.07c.48 1.03.74 2.16.74 3.36m-8 8c-1.2 0-2.33-.26-3.35-.74c-.36-.17-.79-.12-1.07.17l-.06.06c-.47.47-.35 1.29.25 1.57c1.28.6 2.72.94 4.23.94s2.95-.34 4.24-.94c.6-.28.72-1.1.25-1.57l-.06-.06a.94.94 0 0 0-1.07-.17c-1.03.48-2.16.74-3.36.74m-8-8c0-1.2.26-2.33.74-3.35c.17-.36.12-.79-.17-1.07l-.06-.07c-.47-.47-1.28-.35-1.57.25a10.04 10.04 0 0 0 0 8.48c.28.6 1.1.72 1.57.25l.06-.06c.28-.28.34-.71.17-1.07A7.9 7.9 0 0 1 4 12m7.5-6c-2.89 0-5.15 2.74-4.33 5.76c.22.8.68 1.51 1.27 2.1l1.27 1.27c.15.16.28.38.4.71c.41 1.13 1.38 2.04 2.58 2.16a3.02 3.02 0 0 0 2.93-1.53c.36-.65-.15-1.45-.9-1.45c-.34 0-.68.16-.84.47c-.16.29-.5.51-.88.51a1 1 0 0 1-.95-.68c-.15-.44-.4-1.08-.93-1.61l-1.36-1.36C9.28 11.87 9 11.19 9 10.5A2.5 2.5 0 0 1 11.5 8c.98 0 1.83.57 2.24 1.4c.18.36.52.6.91.6c.75 0 1.22-.79.89-1.46A4.48 4.48 0 0 0 11.5 6"/><circle cx="13.5" cy="12.5" r="1.5" fill="currentColor"/></svg>
</template>

CSS

.icon-round-noise-control-off {
  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%204c1.2%200%202.33.26%203.35.74c.36.17.79.12%201.07-.17l.06-.06c.47-.47.35-1.29-.25-1.57C14.95%202.34%2013.51%202%2012%202s-2.95.34-4.24.94c-.6.28-.72%201.1-.25%201.57l.06.06c.28.28.71.34%201.07.17C9.67%204.26%2010.8%204%2012%204m8%208c0%201.2-.26%202.33-.74%203.35c-.17.36-.12.79.17%201.07l.06.06c.47.47%201.29.35%201.57-.25c.6-1.28.94-2.72.94-4.23s-.34-2.95-.94-4.24c-.28-.6-1.1-.72-1.57-.25l-.06.06c-.28.28-.34.71-.17%201.07c.48%201.03.74%202.16.74%203.36m-8%208c-1.2%200-2.33-.26-3.35-.74c-.36-.17-.79-.12-1.07.17l-.06.06c-.47.47-.35%201.29.25%201.57c1.28.6%202.72.94%204.23.94s2.95-.34%204.24-.94c.6-.28.72-1.1.25-1.57l-.06-.06a.94.94%200%200%200-1.07-.17c-1.03.48-2.16.74-3.36.74m-8-8c0-1.2.26-2.33.74-3.35c.17-.36.12-.79-.17-1.07l-.06-.07c-.47-.47-1.28-.35-1.57.25a10.04%2010.04%200%200%200%200%208.48c.28.6%201.1.72%201.57.25l.06-.06c.28-.28.34-.71.17-1.07A7.9%207.9%200%200%201%204%2012m7.5-6c-2.89%200-5.15%202.74-4.33%205.76c.22.8.68%201.51%201.27%202.1l1.27%201.27c.15.16.28.38.4.71c.41%201.13%201.38%202.04%202.58%202.16a3.02%203.02%200%200%200%202.93-1.53c.36-.65-.15-1.45-.9-1.45c-.34%200-.68.16-.84.47c-.16.29-.5.51-.88.51a1%201%200%200%201-.95-.68c-.15-.44-.4-1.08-.93-1.61l-1.36-1.36C9.28%2011.87%209%2011.19%209%2010.5A2.5%202.5%200%200%201%2011.5%208c.98%200%201.83.57%202.24%201.4c.18.36.52.6.91.6c.75%200%201.22-.79.89-1.46A4.48%204.48%200%200%200%2011.5%206%22%2F%3E%3Ccircle%20cx%3D%2213.5%22%20cy%3D%2212.5%22%20r%3D%221.5%22%20fill%3D%22currentColor%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%204c1.2%200%202.33.26%203.35.74c.36.17.79.12%201.07-.17l.06-.06c.47-.47.35-1.29-.25-1.57C14.95%202.34%2013.51%202%2012%202s-2.95.34-4.24.94c-.6.28-.72%201.1-.25%201.57l.06.06c.28.28.71.34%201.07.17C9.67%204.26%2010.8%204%2012%204m8%208c0%201.2-.26%202.33-.74%203.35c-.17.36-.12.79.17%201.07l.06.06c.47.47%201.29.35%201.57-.25c.6-1.28.94-2.72.94-4.23s-.34-2.95-.94-4.24c-.28-.6-1.1-.72-1.57-.25l-.06.06c-.28.28-.34.71-.17%201.07c.48%201.03.74%202.16.74%203.36m-8%208c-1.2%200-2.33-.26-3.35-.74c-.36-.17-.79-.12-1.07.17l-.06.06c-.47.47-.35%201.29.25%201.57c1.28.6%202.72.94%204.23.94s2.95-.34%204.24-.94c.6-.28.72-1.1.25-1.57l-.06-.06a.94.94%200%200%200-1.07-.17c-1.03.48-2.16.74-3.36.74m-8-8c0-1.2.26-2.33.74-3.35c.17-.36.12-.79-.17-1.07l-.06-.07c-.47-.47-1.28-.35-1.57.25a10.04%2010.04%200%200%200%200%208.48c.28.6%201.1.72%201.57.25l.06-.06c.28-.28.34-.71.17-1.07A7.9%207.9%200%200%201%204%2012m7.5-6c-2.89%200-5.15%202.74-4.33%205.76c.22.8.68%201.51%201.27%202.1l1.27%201.27c.15.16.28.38.4.71c.41%201.13%201.38%202.04%202.58%202.16a3.02%203.02%200%200%200%202.93-1.53c.36-.65-.15-1.45-.9-1.45c-.34%200-.68.16-.84.47c-.16.29-.5.51-.88.51a1%201%200%200%201-.95-.68c-.15-.44-.4-1.08-.93-1.61l-1.36-1.36C9.28%2011.87%209%2011.19%209%2010.5A2.5%202.5%200%200%201%2011.5%208c.98%200%201.83.57%202.24%201.4c.18.36.52.6.91.6c.75%200%201.22-.79.89-1.46A4.48%204.48%200%200%200%2011.5%206%22%2F%3E%3Ccircle%20cx%3D%2213.5%22%20cy%3D%2212.5%22%20r%3D%221.5%22%20fill%3D%22currentColor%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ic/round-noise-control-off.svg?color=%231a73e8&size=48