Nearby Error icon

Nearby Error 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.

GradeOptical size

Outlined, unfilled, weight 400

nearby_error_outlined_fill0_wght400.svg

Nearby Error 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=nearby_error" />

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

Nearby Error icon in React

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

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

Nearby Error 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 NearbyErrorOutlinedIcon from "@mui/icons-material/NearbyErrorOutlined";

<NearbyErrorOutlinedIcon />

Nearby Error icon in Vue

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

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

Nearby Error icon in Angular

With Angular Material and the font from the HTML tab:

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

Nearby Error 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.nearby_error, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Nearby Error icon in Android

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

<!-- res/drawable/ic_nearby_error.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="M20.375 18.675v-8.575h1.5v8.575h-1.5Zm.75 3.5q-.35 0-.612-.262T20.25 21.3q0-.35 .263-.612T21.125 20.425q.35 0 .613 .263T22 21.3q0 .35-.262 .613T21.125 22.175ZM11.995 21.925q-.279 0-.55-.125Q11.175 21.675 10.95 21.475L2.525 13.05q-.2-.225-.312-.508-.113-.282-.113-.575Q2.1 11.675 2.213 11.4q.112-.275 .312-.475l8.45-8.45q.225-.212 .497-.319Q11.744 2.05 12.025 2.05q.281 0 .553 .1Q12.85 2.25 13.05 2.475l5.825 5.825v2.75L12 4.175 4.175 12l7.825 7.825 6.875-6.875v2.725L13.075 21.475q-.234 .225-.517 .338Q12.275 21.925 11.995 21.925Zm.005-4.35L6.425 12l5.575-5.575 5.575 5.575-5.575 5.575Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_nearby_error), contentDescription = "Nearby Error")

Nearby Error icon in SVG

npm install @material-symbols/svg-400

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

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

Nearby Error 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

NameNearby Error
Ligaturenearby_error
Code pointU+F03B
CategoryAndroid
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/nearby_error.svg, nearby_error-fill.svg
FlutterSymbols.nearby_error (Material Icons: Icons.nearby_error)
MUI@mui/icons-material/NearbyError
LicenseApache License 2.0 (© Google LLC)

Keywords

androidnetworkconnectionalertsignalstatusmarkwarningnotificationlocationpointtrianglemessage

Related icons