Running With Errors icon

Running With Errors is a Google Material Symbol from the 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.

Outlined, unfilled, weight 400

running_with_errors_outlined_fill0_wght400.svg

Running With Errors 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=running_with_errors" />

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

Running With Errors icon in React

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

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

Running With Errors icon in Vue

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

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

Running With Errors icon in Angular

With Angular Material and the font from the HTML tab:

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

Running With Errors 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.running_with_errors, fill: 0, weight: 400)

Running With Errors icon in Android

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

<!-- res/drawable/running_with_errors.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="M11.95 22q-2.075 0-3.9-.787T4.875 19.075q-1.35-1.35-2.137-3.175T1.95 12q0-2.075 .788-3.9T4.875 4.925q1.35-1.35 3.175-2.137T11.95 2q2.2 0 4.163 .9T19.5 5.45L11.95 13v-9.5q-3.55 0-6.025 2.475t-2.475 6.025q0 3.55 2.47 6.025 2.471 2.475 6.03 2.475 2.025 0 3.838-.912T18.925 17.1v2.075q-1.425 1.35-3.225 2.088T11.95 22Zm8.475-3.675v-8.175h1.5v8.175h-1.5Zm.238 3.263q-.238-.237-.238-.587t.237-.588q.237-.238 .588-.238t.588 .237q.237 .237 .237 .588t-.237 .588q-.237 .237-.587 .237t-.588-.237Z" />
</vector>

Running With Errors icon in SVG

npm install @material-symbols/svg-400

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

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

Running With Errors 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

NameRunning With Errors
Ligaturerunning_with_errors
Code pointU+E51D
CategoryActions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/running_with_errors.svg, running_with_errors-fill.svg
FlutterSymbols.running_with_errors
LicenseApache License 2.0 (© Google LLC)

Keywords

actionsalertstatusmarkwarningnotificationprogresstrianglestoptimeerrordangeractivity

Related icons