Tire Repair icon

Tire Repair 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

tire_repair_outlined_fill0_wght400.svg

Tire Repair 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=tire_repair" />

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

Tire Repair icon in React

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

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

Tire Repair 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 TireRepairOutlinedIcon from "@mui/icons-material/TireRepairOutlined";

<TireRepairOutlinedIcon />

Tire Repair icon in Vue

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

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

Tire Repair icon in Angular

With Angular Material and the font from the HTML tab:

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

Tire Repair 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.tire_repair, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Tire Repair icon in Android

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

<!-- res/drawable/ic_tire_repair.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 7.75q-.425 0-.712-.287T18.25 6.75q0-.2 .088-.387T18.55 6.05q.3-.3 1.375-.675l1.075-.375q-.2 .575-.375 1.075-.15 .425-.337 .825T19.95 7.45q-.125 .125-.312 .213T19.25 7.75ZM3.5 21q-.619 0-1.059-.441Q2 20.119 2 19.5v-15q0-.619 .441-1.059Q2.881 3 3.5 3h6.75q.619 0 1.06 .441Q11.75 3.881 11.75 4.5v9.025q.35-.125 .675-.2t.577-.075q1.145 0 1.947 .802Q15.75 14.854 15.75 16v2.125q0 .5 .438 .938t.95 .437q.512 0 .937-.437t.425-.938v-5.625h-1v-1.35q-1.35-.575-2.175-1.744t-.825-2.65q0-1.981 1.4-3.368Q17.3 2 19.263 2t3.35 1.39Q24 4.78 24 6.752 24 8.225 23.175 9.4t-2.175 1.75v1.35h-1v5.625q0 1.125-.862 2t-2 .875q-1.138 0-2.013-.875t-.875-2v-2.125q0-.531-.359-.891Q13.531 14.75 13 14.75q-.5 0-.875 .359-.375 .36-.375 .891v3.5q0 .619-.44 1.059Q10.869 21 10.25 21H3.5Zm15.747-11Q20.6 10 21.55 9.053q.95-.947 .95-2.3T21.553 4.45q-.947-.95-2.3-.95T16.95 4.447q-.95 .947-.95 2.3T16.947 9.05q.947 .95 2.3 .95ZM3.5 19.5h6.75v-3.1l-2 2v-2.125l2-2v-2.875l-2 2v-2.125l2-2v-3.125l-2 2v-2.125l1.525-1.525H3.975l1.525 1.525v2.125l-2-2v3.125l2 2v2.125l-2-2v2.875l2 2v2.125l-2-2v3.1Zm3.375-7.5Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_tire_repair), contentDescription = "Tire Repair")

Tire Repair icon in SVG

npm install @material-symbols/svg-400

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

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

Tire Repair 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

NameTire Repair
Ligaturetire_repair
Code pointU+EBC8
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/tire_repair.svg, tire_repair-fill.svg
FlutterSymbols.tire_repair (Material Icons: Icons.tire_repair)
MUI@mui/icons-material/TireRepair
LicenseApache License 2.0 (© Google LLC)

Keywords

transitalertwarningservicetooltransportationvehiclecarautomobileround

Related icons