Transportation icon

Transportation 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

transportation_outlined_fill0_wght400.svg

Transportation 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=transportation" />

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

Transportation icon in React

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

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

Transportation icon in Vue

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

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

Transportation icon in Angular

With Angular Material and the font from the HTML tab:

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

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

Transportation icon in Android

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

<!-- res/drawable/transportation.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="M19.25 16.025q-1.8 0-3.062-1.112T14.575 12.05H10.325l-.875-1.5h5.125q.075-.675 .375-1.337t.775-1.188H7.925l-.9-1.5h9.575l-1.375-4.025H11v-1.5h4.225q.502 0 .889 .288Q16.5 1.575 16.65 2.025l1.525 4.5h.825q2.175 0 3.588 1.3T24 11.275q0 1.95-1.4 3.35t-3.35 1.4Zm0-1.5q1.3 0 2.275-.975t.975-2.275q0-1.4-.925-2.325t-2.322-.925q-.028 0-.24 .013t-.238 .012l1 2.75-1.4 .5-1.025-2.775q-.675 .575-1.012 1.238T16 11.275q0 1.354 .948 2.302Q17.896 14.525 19.25 14.525ZM7 23q-1.135 0-1.93-.795Q4.275 21.411 4.275 20.275v-.275H0v-1.5h4.925q.325-.375 .85-.662t1.225-.288q.625 0 1.138 .25t.937 .7h3.175v-3H0v-1.5h2.25v-3H0v-1.5h7.05l2.7 4.5h2.5q.619 0 1.06 .441Q13.75 14.881 13.75 15.5v3q0 .619-.44 1.059Q12.869 20 12.25 20H9.725v.275q0 1.136-.795 1.93Q8.136 23 7 23ZM3.75 14h4.25l-1.8-3h-2.45v3Zm3.25 7.5q.5 0 .863-.362T8.225 20.275q0-.5-.362-.862T7 19.05q-.5 0-.862 .363T5.775 20.275q0 .5 .363 .863T7 21.5Zm-.875-4.5Z" />
</vector>

Transportation icon in SVG

npm install @material-symbols/svg-400

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

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

Transportation 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

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

Keywords

transittravelnestmapsstopvehiclemovementtransferjourneycarautomobilescheduleroute

Related icons