Traffic Jam icon

Traffic Jam 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

traffic_jam_outlined_fill0_wght400.svg

Traffic Jam 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=traffic_jam" />

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

Traffic Jam icon in React

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

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

Traffic Jam icon in Vue

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

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

Traffic Jam icon in Angular

With Angular Material and the font from the HTML tab:

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

Traffic Jam 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.traffic_jam, fill: 0, weight: 400)

Traffic Jam icon in Android

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

<!-- res/drawable/traffic_jam.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="M1.75 22q-.3 0-.525-.216-.225-.215-.225-.534v-8.325l2.2-5.225q.128-.321 .401-.511Q3.875 7 4.225 7h9.575q.338 0 .619 .188T14.825 7.7l2.175 5.225v8.325q0 .319-.215 .534Q16.569 22 16.25 22h-1.025q-.3 0-.525-.216-.225-.215-.225-.534v-1.25H3.525v1.25q0 .319-.215 .534Q3.094 22 2.775 22H1.75Zm1.5-10.55h11.525l-1.225-2.95H4.475l-1.225 2.95Zm-.75 7.05h13v-5.55H2.5v5.55Zm3.663-1.9q.362-.375 .362-.887T6.16 14.825q-.366-.375-.888-.375Q4.75 14.45 4.375 14.822q-.375 .372-.375 .903 0 .5 .371 .875 .37 .375 .9 .375 .529 0 .892-.375Zm7.475 0q.362-.375 .362-.887T13.635 14.825q-.366-.375-.888-.375Q12.225 14.45 11.85 14.822q-.375 .372-.375 .903 0 .5 .371 .875 .37 .375 .9 .375 .529 0 .892-.375ZM18.5 18.925v-8.6l-2.025-4.825H5.925l.342-.806Q6.4 4.375 6.681 4.188T7.3 4h9.425q.344 0 .63 .189T17.775 4.7l2.225 5.325v8.15q0 .319-.215 .534Q19.569 18.925 19.25 18.925h-.75Zm3-3.075v-8.6l-2-4.75H9l.342-.806Q9.475 1.375 9.756 1.188T10.375 1h9.375q.344 0 .63 .189T20.8 1.7l2.2 5.25v8.15q0 .319-.215 .534Q22.569 15.85 22.25 15.85h-.75Zm-12.5-.125Z" />
</vector>

Traffic Jam icon in SVG

npm install @material-symbols/svg-400

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

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

Traffic Jam 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

NameTraffic Jam
Ligaturetraffic_jam
Code pointU+F46F
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/traffic_jam.svg, traffic_jam-fill.svg
FlutterSymbols.traffic_jam
LicenseApache License 2.0 (© Google LLC)

Keywords

transitalerttravelwarningmapsstoptransportationvehiclejourneycarautomobileroutestack

Related icons