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

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

3 other variants in Fluent UI System Icons

The same icon in other sets

Use the router off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M2.22 2.22a.75.75 0 0 1 1.06 0l18.5 18.5a.75.75 0 0 1-1.06 1.06l-.633-.633A2.98 2.98 0 0 1 18 22H6a3 3 0 1 1 0-6h5.25v-2.095a3 3 0 0 1-2.134-3.728L7.96 9.02A4.5 4.5 0 0 0 7.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.129.312-2.184.854-3.085L5.768 6.828A7.47 7.47 0 0 0 4.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.96.626-3.772 1.69-5.25L2.22 3.28a.75.75 0 0 1 0-1.06M6 17.5a1.5 1.5 0 0 0 0 3h12c.399 0 .76-.157 1.028-.411L16.44 17.5zm6.75-3.595V16h2.19l-2.118-2.117q-.035.012-.072.022M12 5a6 6 0 0 1 6 6v.25a.75.75 0 0 1-1.5 0V11a4.5 4.5 0 0 0-6.4-4.081l-1.11-1.11A5.97 5.97 0 0 1 12 5m0-3a9 9 0 0 1 9 9v.25a.75.75 0 0 1-1.5 0V11A7.5 7.5 0 0 0 7.901 4.72L6.822 3.64A8.96 8.96 0 0 1 12 2m0 6a3 3 0 0 1 2.91 3.727l-3.637-3.635A3 3 0 0 1 12 8"/></svg>

React

import type { SVGProps } from "react";

export function FluentRouterOff24Regular(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="M2.22 2.22a.75.75 0 0 1 1.06 0l18.5 18.5a.75.75 0 0 1-1.06 1.06l-.633-.633A2.98 2.98 0 0 1 18 22H6a3 3 0 1 1 0-6h5.25v-2.095a3 3 0 0 1-2.134-3.728L7.96 9.02A4.5 4.5 0 0 0 7.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.129.312-2.184.854-3.085L5.768 6.828A7.47 7.47 0 0 0 4.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.96.626-3.772 1.69-5.25L2.22 3.28a.75.75 0 0 1 0-1.06M6 17.5a1.5 1.5 0 0 0 0 3h12c.399 0 .76-.157 1.028-.411L16.44 17.5zm6.75-3.595V16h2.19l-2.118-2.117q-.035.012-.072.022M12 5a6 6 0 0 1 6 6v.25a.75.75 0 0 1-1.5 0V11a4.5 4.5 0 0 0-6.4-4.081l-1.11-1.11A5.97 5.97 0 0 1 12 5m0-3a9 9 0 0 1 9 9v.25a.75.75 0 0 1-1.5 0V11A7.5 7.5 0 0 0 7.901 4.72L6.822 3.64A8.96 8.96 0 0 1 12 2m0 6a3 3 0 0 1 2.91 3.727l-3.637-3.635A3 3 0 0 1 12 8"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M2.22 2.22a.75.75 0 0 1 1.06 0l18.5 18.5a.75.75 0 0 1-1.06 1.06l-.633-.633A2.98 2.98 0 0 1 18 22H6a3 3 0 1 1 0-6h5.25v-2.095a3 3 0 0 1-2.134-3.728L7.96 9.02A4.5 4.5 0 0 0 7.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.129.312-2.184.854-3.085L5.768 6.828A7.47 7.47 0 0 0 4.5 11v.25a.75.75 0 0 1-1.5 0V11c0-1.96.626-3.772 1.69-5.25L2.22 3.28a.75.75 0 0 1 0-1.06M6 17.5a1.5 1.5 0 0 0 0 3h12c.399 0 .76-.157 1.028-.411L16.44 17.5zm6.75-3.595V16h2.19l-2.118-2.117q-.035.012-.072.022M12 5a6 6 0 0 1 6 6v.25a.75.75 0 0 1-1.5 0V11a4.5 4.5 0 0 0-6.4-4.081l-1.11-1.11A5.97 5.97 0 0 1 12 5m0-3a9 9 0 0 1 9 9v.25a.75.75 0 0 1-1.5 0V11A7.5 7.5 0 0 0 7.901 4.72L6.822 3.64A8.96 8.96 0 0 1 12 2m0 6a3 3 0 0 1 2.91 3.727l-3.637-3.635A3 3 0 0 1 12 8"/></svg>
</template>

CSS

.icon-router-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%22M2.22%202.22a.75.75%200%200%201%201.06%200l18.5%2018.5a.75.75%200%200%201-1.06%201.06l-.633-.633A2.98%202.98%200%200%201%2018%2022H6a3%203%200%201%201%200-6h5.25v-2.095a3%203%200%200%201-2.134-3.728L7.96%209.02A4.5%204.5%200%200%200%207.5%2011v.25a.75.75%200%200%201-1.5%200V11c0-1.129.312-2.184.854-3.085L5.768%206.828A7.47%207.47%200%200%200%204.5%2011v.25a.75.75%200%200%201-1.5%200V11c0-1.96.626-3.772%201.69-5.25L2.22%203.28a.75.75%200%200%201%200-1.06M6%2017.5a1.5%201.5%200%200%200%200%203h12c.399%200%20.76-.157%201.028-.411L16.44%2017.5zm6.75-3.595V16h2.19l-2.118-2.117q-.035.012-.072.022M12%205a6%206%200%200%201%206%206v.25a.75.75%200%200%201-1.5%200V11a4.5%204.5%200%200%200-6.4-4.081l-1.11-1.11A5.97%205.97%200%200%201%2012%205m0-3a9%209%200%200%201%209%209v.25a.75.75%200%200%201-1.5%200V11A7.5%207.5%200%200%200%207.901%204.72L6.822%203.64A8.96%208.96%200%200%201%2012%202m0%206a3%203%200%200%201%202.91%203.727l-3.637-3.635A3%203%200%200%201%2012%208%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%22M2.22%202.22a.75.75%200%200%201%201.06%200l18.5%2018.5a.75.75%200%200%201-1.06%201.06l-.633-.633A2.98%202.98%200%200%201%2018%2022H6a3%203%200%201%201%200-6h5.25v-2.095a3%203%200%200%201-2.134-3.728L7.96%209.02A4.5%204.5%200%200%200%207.5%2011v.25a.75.75%200%200%201-1.5%200V11c0-1.129.312-2.184.854-3.085L5.768%206.828A7.47%207.47%200%200%200%204.5%2011v.25a.75.75%200%200%201-1.5%200V11c0-1.96.626-3.772%201.69-5.25L2.22%203.28a.75.75%200%200%201%200-1.06M6%2017.5a1.5%201.5%200%200%200%200%203h12c.399%200%20.76-.157%201.028-.411L16.44%2017.5zm6.75-3.595V16h2.19l-2.118-2.117q-.035.012-.072.022M12%205a6%206%200%200%201%206%206v.25a.75.75%200%200%201-1.5%200V11a4.5%204.5%200%200%200-6.4-4.081l-1.11-1.11A5.97%205.97%200%200%201%2012%205m0-3a9%209%200%200%201%209%209v.25a.75.75%200%200%201-1.5%200V11A7.5%207.5%200%200%200%207.901%204.72L6.822%203.64A8.96%208.96%200%200%201%2012%202m0%206a3%203%200%200%201%202.91%203.727l-3.637-3.635A3%203%200%200%201%2012%208%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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