Taxi Alert icon

Taxi 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

taxi_alert_outlined_fill0_wght400.svg

Taxi 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,[email protected],100..700,0..1,-50..200&icon_names=taxi_alert" />

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

Taxi Alert icon in React

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

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

Taxi Alert icon in Vue

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

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

Taxi Alert icon in Angular

With Angular Material and the font from the HTML tab:

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

Taxi 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.taxi_alert, fill: 0, weight: 400)

Taxi Alert icon in Android

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

<!-- res/drawable/taxi_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 18.4v-5.25 5.25Zm12.419-1.25q.581 0 .969-.394Q17.275 16.363 17.275 15.8q0-.583-.394-.992Q16.488 14.4 15.925 14.4q-.583 0-.992 .407Q14.525 15.213 14.525 15.794q0 .581 .407 .969 .406 .387 .987 .387Zm-9.775 0q.581 0 .969-.394Q7.5 16.363 7.5 15.8q0-.583-.394-.992Q6.713 14.4 6.15 14.4q-.583 0-.992 .407Q4.75 15.213 4.75 15.794q0 .581 .407 .969 .406 .387 .987 .387Zm11.086-5.6Q15.25 11.55 13.85 10.15t-1.4-3.387Q12.45 4.8 13.85 3.4q1.4-1.4 3.375-1.4 2 0 3.388 1.388T22 6.775q0 2-1.395 3.388-1.396 1.387-3.375 1.387ZM16.85 7.525h.875v-3.575h-.875v3.575Zm.438 2.125q.237 0 .4-.15t.162-.4q0-.25-.165-.4t-.385-.15q-.275 .025-.412 .175t-.138 .388q0 .237 .15 .387t.388 .15ZM10.9 7.5H5.45l-1.375 4.15h9.05q.825 .7 1.875 1.1t2.225 .4H3.5v5.25h15v-5.375q.396-.065 .773-.195Q19.65 12.7 20 12.525v8.725q0 .319-.215 .534Q19.569 22 19.25 22h-.525q-.325 0-.525-.216-.2-.215-.2-.534v-1.35H4v1.35q0 .319-.215 .534Q3.569 22 3.25 22h-.5q-.319 0-.534-.216Q2 21.569 2 21.25v-8.1l2.125-6.4q.125-.35 .413-.55t.662-.2h3.125v-1.5h2.95q-.205 .529-.315 1.096Q10.85 6.163 10.85 6.767q0 .208 .013 .371T10.9 7.5Z" />
</vector>

Taxi Alert icon in SVG

npm install @material-symbols/svg-400

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

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

Taxi 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

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

Keywords

transitsignaltravelmarkwarningnotificationservicemapstrianglemessagetransportationvehicleerror

Related icons