wifi-off-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
wifi-off-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

5 other variants in Fluent UI System Icons

The same icon in other sets

Related icons in Fluent UI System Icons

Use the wifi off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.28 2.22a.75.75 0 1 0-1.06 1.06l3.364 3.365a12 12 0 0 0-2.033 1.634c-.49.489-.964 1.069-1.394 1.69a.75.75 0 1 0 1.233.854c.381-.55.8-1.062 1.222-1.484a10.5 10.5 0 0 1 2.062-1.604l1.592 1.592a8 8 0 0 0-1.923 1.424c-.61.61-1.109 1.3-1.492 2.056a.75.75 0 0 0 1.339.677a6.5 6.5 0 0 1 1.214-1.673a6.6 6.6 0 0 1 1.984-1.362l1.93 1.93a5.07 5.07 0 0 0-2.876 1.44a5.1 5.1 0 0 0-1.061 1.57a.75.75 0 0 0 1.374.602c.185-.422.437-.8.747-1.11a3.59 3.59 0 0 1 3.36-.959l7.857 7.858a.75.75 0 0 0 1.061-1.06zm8.304 6.182l1.584 1.584a6.53 6.53 0 0 1 3.516 1.825a6.8 6.8 0 0 1 1.217 1.692a.75.75 0 0 0 1.335-.683a8.3 8.3 0 0 0-1.492-2.07a8.04 8.04 0 0 0-6.16-2.348M8.487 5.305L9.713 6.53a10.44 10.44 0 0 1 10.908 4.297a.75.75 0 0 0 1.235-.852a11.95 11.95 0 0 0-13.369-4.67m4.573 11.134a1.5 1.5 0 1 1-2.121 2.122a1.5 1.5 0 0 1 2.121-2.122"/></svg>

React

import type { SVGProps } from "react";

export function FluentWifiOff24Regular(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="M3.28 2.22a.75.75 0 1 0-1.06 1.06l3.364 3.365a12 12 0 0 0-2.033 1.634c-.49.489-.964 1.069-1.394 1.69a.75.75 0 1 0 1.233.854c.381-.55.8-1.062 1.222-1.484a10.5 10.5 0 0 1 2.062-1.604l1.592 1.592a8 8 0 0 0-1.923 1.424c-.61.61-1.109 1.3-1.492 2.056a.75.75 0 0 0 1.339.677a6.5 6.5 0 0 1 1.214-1.673a6.6 6.6 0 0 1 1.984-1.362l1.93 1.93a5.07 5.07 0 0 0-2.876 1.44a5.1 5.1 0 0 0-1.061 1.57a.75.75 0 0 0 1.374.602c.185-.422.437-.8.747-1.11a3.59 3.59 0 0 1 3.36-.959l7.857 7.858a.75.75 0 0 0 1.061-1.06zm8.304 6.182l1.584 1.584a6.53 6.53 0 0 1 3.516 1.825a6.8 6.8 0 0 1 1.217 1.692a.75.75 0 0 0 1.335-.683a8.3 8.3 0 0 0-1.492-2.07a8.04 8.04 0 0 0-6.16-2.348M8.487 5.305L9.713 6.53a10.44 10.44 0 0 1 10.908 4.297a.75.75 0 0 0 1.235-.852a11.95 11.95 0 0 0-13.369-4.67m4.573 11.134a1.5 1.5 0 1 1-2.121 2.122a1.5 1.5 0 0 1 2.121-2.122"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M3.28 2.22a.75.75 0 1 0-1.06 1.06l3.364 3.365a12 12 0 0 0-2.033 1.634c-.49.489-.964 1.069-1.394 1.69a.75.75 0 1 0 1.233.854c.381-.55.8-1.062 1.222-1.484a10.5 10.5 0 0 1 2.062-1.604l1.592 1.592a8 8 0 0 0-1.923 1.424c-.61.61-1.109 1.3-1.492 2.056a.75.75 0 0 0 1.339.677a6.5 6.5 0 0 1 1.214-1.673a6.6 6.6 0 0 1 1.984-1.362l1.93 1.93a5.07 5.07 0 0 0-2.876 1.44a5.1 5.1 0 0 0-1.061 1.57a.75.75 0 0 0 1.374.602c.185-.422.437-.8.747-1.11a3.59 3.59 0 0 1 3.36-.959l7.857 7.858a.75.75 0 0 0 1.061-1.06zm8.304 6.182l1.584 1.584a6.53 6.53 0 0 1 3.516 1.825a6.8 6.8 0 0 1 1.217 1.692a.75.75 0 0 0 1.335-.683a8.3 8.3 0 0 0-1.492-2.07a8.04 8.04 0 0 0-6.16-2.348M8.487 5.305L9.713 6.53a10.44 10.44 0 0 1 10.908 4.297a.75.75 0 0 0 1.235-.852a11.95 11.95 0 0 0-13.369-4.67m4.573 11.134a1.5 1.5 0 1 1-2.121 2.122a1.5 1.5 0 0 1 2.121-2.122"/></svg>
</template>

CSS

.icon-wifi-off-24-regular {
  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%22M3.28%202.22a.75.75%200%201%200-1.06%201.06l3.364%203.365a12%2012%200%200%200-2.033%201.634c-.49.489-.964%201.069-1.394%201.69a.75.75%200%201%200%201.233.854c.381-.55.8-1.062%201.222-1.484a10.5%2010.5%200%200%201%202.062-1.604l1.592%201.592a8%208%200%200%200-1.923%201.424c-.61.61-1.109%201.3-1.492%202.056a.75.75%200%200%200%201.339.677a6.5%206.5%200%200%201%201.214-1.673a6.6%206.6%200%200%201%201.984-1.362l1.93%201.93a5.07%205.07%200%200%200-2.876%201.44a5.1%205.1%200%200%200-1.061%201.57a.75.75%200%200%200%201.374.602c.185-.422.437-.8.747-1.11a3.59%203.59%200%200%201%203.36-.959l7.857%207.858a.75.75%200%200%200%201.061-1.06zm8.304%206.182l1.584%201.584a6.53%206.53%200%200%201%203.516%201.825a6.8%206.8%200%200%201%201.217%201.692a.75.75%200%200%200%201.335-.683a8.3%208.3%200%200%200-1.492-2.07a8.04%208.04%200%200%200-6.16-2.348M8.487%205.305L9.713%206.53a10.44%2010.44%200%200%201%2010.908%204.297a.75.75%200%200%200%201.235-.852a11.95%2011.95%200%200%200-13.369-4.67m4.573%2011.134a1.5%201.5%200%201%201-2.121%202.122a1.5%201.5%200%200%201%202.121-2.122%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%22M3.28%202.22a.75.75%200%201%200-1.06%201.06l3.364%203.365a12%2012%200%200%200-2.033%201.634c-.49.489-.964%201.069-1.394%201.69a.75.75%200%201%200%201.233.854c.381-.55.8-1.062%201.222-1.484a10.5%2010.5%200%200%201%202.062-1.604l1.592%201.592a8%208%200%200%200-1.923%201.424c-.61.61-1.109%201.3-1.492%202.056a.75.75%200%200%200%201.339.677a6.5%206.5%200%200%201%201.214-1.673a6.6%206.6%200%200%201%201.984-1.362l1.93%201.93a5.07%205.07%200%200%200-2.876%201.44a5.1%205.1%200%200%200-1.061%201.57a.75.75%200%200%200%201.374.602c.185-.422.437-.8.747-1.11a3.59%203.59%200%200%201%203.36-.959l7.857%207.858a.75.75%200%200%200%201.061-1.06zm8.304%206.182l1.584%201.584a6.53%206.53%200%200%201%203.516%201.825a6.8%206.8%200%200%201%201.217%201.692a.75.75%200%200%200%201.335-.683a8.3%208.3%200%200%200-1.492-2.07a8.04%208.04%200%200%200-6.16-2.348M8.487%205.305L9.713%206.53a10.44%2010.44%200%200%201%2010.908%204.297a.75.75%200%200%200%201.235-.852a11.95%2011.95%200%200%200-13.369-4.67m4.573%2011.134a1.5%201.5%200%201%201-2.121%202.122a1.5%201.5%200%200%201%202.121-2.122%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/wifi-off-24-regular.svg?color=%231a73e8&size=48