Bus Alert icon

Bus Alert is a Google Material Symbol from the Transit 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

bus_alert_outlined_fill0_wght400.svg

Bus Alert 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=bus_alert" />

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

Bus Alert icon in React

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

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

Bus Alert icon in Vue

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

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

Bus Alert icon in Angular

With Angular Material and the font from the HTML tab:

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

Bus Alert 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.bus_alert, fill: 0, weight: 400)

Bus Alert icon in Android

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

<!-- res/drawable/bus_alert.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="M3.5 5.9h7.475-7.475Zm2.05 7.325h-2.05 13-10.95ZM4.225 22q-.35 0-.587-.2t-.238-.475v-2.1q-.65-.375-1.025-1.112T2 16.475v-9.925q0-1.925 2.138-2.687T11.725 3.1q-.225 .35-.425 .725t-.325 .775q-3.8 .05-5.462 .35T3.5 5.9h7.15q-.05 .375-.062 .75t.037 .75H3.5v4.325h9.325q.6 .55 1.35 .925t1.55 .575H3.5v3q0 .9 .613 1.563T5.55 18.45h8.9q.825 0 1.438-.662T16.5 16.225v-2.875q.375 .05 .75 .05t.75-.05v3.125q0 .9-.375 1.638T16.6 19.225v2.1q0 .275-.237 .475T15.775 22h-.475q-.35 0-.6-.2t-.25-.475v-1.375H5.55v1.375q0 .275-.25 .475t-.6 .2h-.475Zm13-10.45q-1.975 0-3.375-1.4t-1.4-3.375q0-1.975 1.4-3.375t3.375-1.4q2 0 3.388 1.388T22 6.775q0 2-1.4 3.388T17.225 11.55Zm-.375-4.025h.875v-3.575h-.875v3.575Zm.45 2.125q.225 0 .388-.15t.162-.4q0-.25-.162-.4t-.388-.15q-.275 .025-.412 .175t-.138 .375q0 .25 .15 .4t.4 .15ZM7.125 16.8q.4-.4 .4-.975t-.4-.975q-.4-.4-.975-.4t-.975 .4q-.4 .4-.4 .975t.4 .975q.4 .4 .975 .4t.975-.4Zm7.7 0q.4-.4 .4-.975t-.4-.975q-.4-.4-.975-.4t-.975 .4q-.4 .4-.4 .975t.4 .975q.4 .4 .975 .4t.975-.4Z" />
</vector>

Bus Alert icon in SVG

npm install @material-symbols/svg-400

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

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

Bus Alert 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

NameBus Alert
Ligaturebus_alert
Code pointU+E98F
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/bus_alert.svg, bus_alert-fill.svg
FlutterSymbols.bus_alert
LicenseApache License 2.0 (© Google LLC)

Keywords

transitinformationsignaltravelmarkwarningnotificationmapstrianglestopmessagetransportationvehicle

Related icons