Apps Outage icon

Apps Outage is a Google Material Symbol from the UI actions 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.

GradeOptical size

Outlined, unfilled, weight 400

apps_outage_outlined_fill0_wght400.svg

Apps Outage 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,GRAD@20..48,100..700,0..1,-50..200&icon_names=apps_outage" />

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

Apps Outage icon in React

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

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

Apps Outage icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import AppsOutageOutlinedIcon from "@mui/icons-material/AppsOutageOutlined";

<AppsOutageOutlinedIcon />

Apps Outage icon in Vue

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

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

Apps Outage icon in Angular

With Angular Material and the font from the HTML tab:

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

Apps Outage 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.apps_outage, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.apps_outage_outlined)

Apps Outage icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_apps_outage.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="M4.475 19.525q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm0-6.35q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm0-6.35q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm6.35 12.7q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm0-6.35q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm1.175-5.875q-.7 0-1.175-.475t-.475-1.175q0-.7 .475-1.175t1.175-.475q.15 0 .3 .025t.275 .075q-.05 .225-.062 .45t-.013 .45q0 .55 .088 1.063T12.85 7.075q-.2 .125-.412 .175t-.438 .05Zm3.463 1.238Q14 7.075 14 5t1.463-3.537Q16.925 0 19 0t3.538 1.463Q24 2.925 24 5t-1.462 3.538Q21.075 10 19 10t-3.537-1.462ZM17.175 19.525q-.475-.475-.475-1.175t.475-1.175q.475-.475 1.175-.475t1.175 .475q.475 .475 .475 1.175t-.475 1.175q-.475 .475-1.175 .475t-1.175-.475Zm1.175-5.875q-.7 0-1.175-.475t-.475-1.175q0-.225 .05-.437t.175-.413q.5 .175 1.013 .263T19 11.5q.225 0 .45-.012t.45-.063q.05 .125 .075 .275t.025 .3q0 .7-.475 1.175t-1.175 .475Zm1-5.8q.15-.15 .15-.35t-.15-.35q-.15-.15-.35-.15t-.35 .15q-.15 .15-.15 .35t.15 .35q.15 .15 .35 .15t.35-.15Zm-.85-1.85h1v-4h-1v4Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_apps_outage), contentDescription = "Apps Outage")

Apps Outage icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/apps_outage.svg" width="24" height="24" alt="Apps Outage">

Apps Outage 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

NameApps Outage
Ligatureapps_outage
Code pointU+E7CC
CategoryUI actions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/apps_outage.svg, apps_outage-fill.svg
FlutterSymbols.apps_outage (Material Icons: Icons.apps_outage)
MUI@mui/icons-material/AppsOutage
LicenseApache License 2.0 (© Google LLC)

Keywords

ui actionsnetworkconnectionalertinternetdigitalsystemwarningnotificationservicegridconnectivityoffline

Related icons