Electric Scooter icon

Electric Scooter 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.

GradeOptical size

Outlined, unfilled, weight 400

electric_scooter_outlined_fill0_wght400.svg

Electric Scooter 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,GRAD@20..48,100..700,0..1,-50..200&icon_names=electric_scooter" />

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

Electric Scooter icon in React

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

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

Electric Scooter icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import ElectricScooterOutlinedIcon from "@mui/icons-material/ElectricScooterOutlined";

<ElectricScooterOutlinedIcon />

Electric Scooter icon in Vue

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

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

Electric Scooter icon in Angular

With Angular Material and the font from the HTML tab:

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

Electric Scooter 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.electric_scooter, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.electric_scooter_outlined)

Electric Scooter icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_electric_scooter.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="M4.775 18q-1.156 0-1.965-.808Q2 16.384 2 15.23q0-1.155 .81-1.967Q3.619 12.45 4.775 12.45q.95 0 1.725 .525t.975 1.425h6q.2-1.8 1.425-3.112T17.925 9.65l-1.575-7.15H12.4v-1.5h3.625q.675 0 1.213 .4t.687 1.05l1.85 8.4h-.55q-1.794 0-3.072 1.285Q14.875 13.42 14.875 15.225v.675H7.475q-.2 .95-.975 1.525t-1.725 .575Zm.9-1.875q.375-.375 .375-.9t-.375-.9q-.375-.375-.9-.375t-.9 .375q-.375 .375-.375 .9t.375 .9q.375 .375 .9 .375t.9-.375Zm11.588 1.067q-.813-.808-.813-1.962 0-1.155 .808-1.967 .808-.813 1.963-.813 1.154 0 1.967 .808 .812 .808 .812 1.963 0 1.154-.808 1.967-.808 .812-1.962 .812-1.155 0-1.967-.808ZM20.125 16.125q.375-.375 .375-.9t-.375-.9q-.375-.375-.9-.375t-.9 .375q-.375 .375-.375 .9t.375 .9q.375 .375 .9 .375t.9-.375ZM13.075 23 7.35 20.075h3.75v-1.975l5.725 2.95H13.075v1.95ZM4.775 15.225Zm14.45 0Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_electric_scooter), contentDescription = "Electric Scooter")

Electric Scooter icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/electric_scooter.svg" width="24" height="24" alt="Electric Scooter">

Electric Scooter 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

NameElectric Scooter
Ligatureelectric_scooter
Code pointU+EB1F
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/electric_scooter.svg, electric_scooter-fill.svg
FlutterSymbols.electric_scooter (Material Icons: Icons.electric_scooter)
MUI@mui/icons-material/ElectricScooter
LicenseApache License 2.0 (© Google LLC)

Keywords

transittravelmapstransportationvehiclemovementtransport

Related icons