Departure Board icon

Departure Board 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

departure_board_outlined_fill0_wght400.svg

Departure Board 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=departure_board" />

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

Departure Board icon in React

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

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

Departure Board icon in Vue

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

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

Departure Board icon in Angular

With Angular Material and the font from the HTML tab:

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

Departure Board 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.departure_board, fill: 0, weight: 400)

Departure Board icon in Android

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

<!-- res/drawable/departure_board.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="m18.975 9.2 .625-.625-1.9-1.9v-3.05h-.875v3.275l2.15 2.3ZM3.5 5.9h7.15-7.15Zm2.05 7.325h-2.05 12.225-10.175ZM4.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.55ZM7.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>

Departure Board icon in SVG

npm install @material-symbols/svg-400

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

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

Departure Board 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

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

Keywords

transitlinestravelstatuslistmapstimetransportationvehicleclockcarautomobileschedule

Related icons