Signal Disconnected icon

Signal Disconnected is a Google Material Symbol from the Android category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

signal_disconnected_outlined_fill0_wght400.svg

Signal Disconnected icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=signal_disconnected" />

<span class="material-symbols-outlined">signal_disconnected</span>

Signal Disconnected icon in React

// With the font from the HTML tab:
export function SignalDisconnectedIcon() {
  return (
    <span className="material-symbols-outlined">
      signal_disconnected
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import SignalDisconnectedIcon from "@material-symbols/svg-400/outlined/signal_disconnected.svg?react";

Signal Disconnected icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">signal_disconnected</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import SignalDisconnectedIcon from "@material-symbols/svg-400/outlined/signal_disconnected.svg?component"; -->

Signal Disconnected icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">signal_disconnected</mat-icon>

Signal Disconnected icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.signal_disconnected, fill: 0, weight: 400)

Signal Disconnected icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/signal_disconnected.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="m16.825 14.7-.875-.875q.725-.8 1.113-1.775t.387-2.05q0-1.1-.412-2.087T15.875 6.125l.875-.875q.95 .95 1.45 2.175t.5 2.575q0 1.325-.5 2.525t-1.375 2.175ZM13.675 11.55 10.45 8.325q.3-.3 .713-.45t.837-.15q.95 0 1.613 .663T14.275 10q0 .425-.15 .825t-.45 .725Zm5.45 5.45-.875-.875q1.175-1.275 1.838-2.837T20.75 10q0-1.75-.675-3.337T18.175 3.825l.875-.875q1.425 1.425 2.188 3.238T22 10q0 1.975-.762 3.775T19.125 17Zm1.2 5.475L12.75 14.9v6.1h-1.5v-7.6L6.7 8.85q-.1 .275-.125 .563t-.025 .587q0 1.1 .4 2.1t1.175 1.775l-.875 .875q-.95-.95-1.45-2.175t-.5-2.575q0-.575 .088-1.112T5.675 7.825l-1.55-1.55q-.425 .875-.65 1.813t-.225 1.912q0 1.75 .663 3.338T5.825 16.175l-.875 .875q-1.425-1.4-2.187-3.225T2 10q0-1.225 .3-2.4t.875-2.275l-1.65-1.65 1.075-1.075 18.8 18.8-1.075 1.075Z" />
</vector>

Signal Disconnected icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/signal_disconnected.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/signal_disconnected.svg" width="24" height="24" alt="Signal Disconnected">

Signal Disconnected icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameSignal Disconnected
Ligaturesignal_disconnected
Code pointU+F239
CategoryAndroid
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/signal_disconnected.svg, signal_disconnected-fill.svg
FlutterSymbols.signal_disconnected
LicenseApache License 2.0 (© Google LLC)

Keywords

androidmobilenetworkconnectionalertinternetstatusslashwirelesswarningserviceconnectivitywifi

Related icons