Auto Transmission icon

Auto Transmission 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

auto_transmission_outlined_fill0_wght400.svg

Auto Transmission 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=auto_transmission" />

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

Auto Transmission icon in React

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

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

Auto Transmission icon in Vue

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

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

Auto Transmission icon in Angular

With Angular Material and the font from the HTML tab:

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

Auto Transmission 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.auto_transmission, fill: 0, weight: 400)

Auto Transmission icon in Android

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

<!-- res/drawable/auto_transmission.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="M3.997 21Q2.85 21 2.05 20.198 1.25 19.396 1.25 18.25q0-.95 .563-1.675t1.437-.975v-7.2q-.875-.25-1.437-.975T1.25 5.75q0-1.146 .803-1.948 .803-.802 1.95-.802T5.95 3.802q.8 .802 .8 1.948 0 .95-.562 1.675T4.75 8.4v2.85h6.5v-2.85q-.875-.25-1.437-.975T9.25 5.75q0-1.146 .803-1.948 .803-.802 1.95-.802T13.95 3.802q.8 .802 .8 1.948 0 .95-.562 1.675T12.75 8.4v2.85h5.25q.531 0 .891-.375Q19.25 10.5 19.25 10v-1.6q-.875-.25-1.437-.975T17.25 5.75q0-1.146 .803-1.948 .803-.802 1.95-.802T21.95 3.802q.8 .802 .8 1.948 0 .95-.562 1.675T20.75 8.4v1.6q0 1.125-.802 1.938Q19.146 12.75 18 12.75H12.75v2.85q.875 .25 1.438 .975t.562 1.675q0 1.146-.803 1.948-.803 .802-1.95 .802T10.05 20.198q-.8-.802-.8-1.948 0-.95 .563-1.675t1.437-.975v-2.85H4.75v2.85q.875 .25 1.438 .975t.562 1.675q0 1.146-.803 1.948-.803 .802-1.95 .802Zm.003-1.5q.5 0 .875-.359 .375-.36 .375-.891 0-.5-.358-.875-.358-.375-.887-.375-.53 0-.892 .375T2.75 18.263q0 .512 .36 .875Q3.469 19.5 4 19.5Zm0-12.5q.5 0 .875-.358 .375-.358 .375-.888 0-.529-.358-.891-.358-.363-.887-.363-.53 0-.892 .359Q2.75 5.219 2.75 5.75q0 .5 .36 .875 .359 .375 .89 .375Zm8 12.5q.5 0 .875-.359 .375-.36 .375-.891 0-.5-.375-.875t-.875-.375q-.5 0-.875 .375t-.375 .888q0 .512 .375 .875t.875 .362Zm0-12.5q.5 0 .875-.358 .375-.358 .375-.888 0-.529-.375-.891T12 4.5q-.5 0-.875 .358-.375 .358-.375 .888 0 .529 .375 .892t.875 .362Zm8.013 0q.512 0 .875-.358 .362-.358 .362-.888 0-.529-.359-.891Q20.531 4.5 20 4.5q-.5 0-.875 .358-.375 .358-.375 .888 0 .529 .375 .892t.888 .362ZM4 18.25Zm0-12.5Zm8 12.5Zm0-12.5Zm8 0Z" />
</vector>

Auto Transmission icon in SVG

npm install @material-symbols/svg-400

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

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

Auto Transmission 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

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

Keywords

transitsystemsettingtransportationvehiclecarforwardautomobiledrivemodedashboardgearautomotive

Related icons