Route icon

Route is a Google Material Symbol from the Hardware 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

route_outlined_fill0_wght400.svg

Route 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=route" />

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

Route icon in React

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

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

Route icon in Vue

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

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

Route icon in Angular

With Angular Material and the font from the HTML tab:

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

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

Route icon in Android

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

<!-- res/drawable/route.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="M6.125 19.862Q5 18.724 5 17.125v-8.725q-.875-.325-1.437-1.031-.563-.707-.563-1.611Q3 4.6 3.813 3.8t1.95-.8q1.137 0 1.937 .803t.8 1.952q0 .895-.562 1.608T6.5 8.4v8.725q0 .98 .688 1.677Q7.875 19.5 8.888 19.5t1.687-.698q.675-.697 .675-1.677v-10.25q0-1.625 1.125-2.75t2.75-1.125q1.625 0 2.75 1.125t1.125 2.75v8.725q.875 .325 1.438 1.034Q21 17.343 21 18.25q0 1.125-.802 1.938Q19.396 21 18.25 21q-1.125 0-1.937-.812T15.5 18.25q0-.907 .563-1.629Q16.625 15.9 17.5 15.6v-8.725q0-1-.687-1.687T15.125 4.5q-1 0-1.687 .688T12.75 6.875v10.25q0 1.599-1.125 2.737T8.875 21q-1.625 0-2.75-1.138ZM5.763 7q.512 0 .875-.375t.362-.887q0-.513-.359-.875Q6.281 4.5 5.75 4.5q-.5 0-.875 .359-.375 .36-.375 .891 0 .5 .375 .875t.888 .375Zm12.5 12.5q.512 0 .875-.375t.362-.887q0-.513-.359-.875Q18.781 17 18.25 17q-.5 0-.875 .359-.375 .36-.375 .891 0 .5 .375 .875t.888 .375ZM5.75 5.75Zm12.5 12.5Z" />
</vector>

Route icon in SVG

npm install @material-symbols/svg-400

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

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

Route 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

NameRoute
Ligatureroute
Code pointU+EACD
CategoryHardware
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/route.svg, route-fill.svg
FlutterSymbols.route
LicenseApache License 2.0 (© Google LLC)

Keywords

hardwareconnectiontravelmapsmapdestinationjourneypathsigntrackdirectionsroadtraffic

Related icons