Car Tag icon

Car Tag 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

car_tag_outlined_fill0_wght400.svg

Car Tag 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=car_tag" />

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

Car Tag icon in React

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

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

Car Tag icon in Vue

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

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

Car Tag icon in Angular

With Angular Material and the font from the HTML tab:

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

Car Tag 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.car_tag, fill: 0, weight: 400)

Car Tag icon in Android

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

<!-- res/drawable/car_tag.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.144 16.15q.581 0 .969-.394Q7.5 15.363 7.5 14.8q0-.583-.394-.992Q6.713 13.4 6.15 13.4q-.583 0-.992 .407Q4.75 14.213 4.75 14.794q0 .581 .407 .969 .406 .387 .987 .387ZM15.925 16.15q.575 0 .963-.387T17.275 14.8q0-.15-.037-.3t-.088-.275q-.4-.05-.75-.237T15.775 13.525l-.125-.1q-.5 .1-.812 .488T14.525 14.8q0 .563 .408 .956Q15.342 16.15 15.925 16.15Zm-12.425 1.25v-5.25 2.05-.075 3.275Zm.5 1.5v1.35q0 .319-.215 .534Q3.569 21 3.25 21h-.5q-.319 0-.534-.216Q2 20.569 2 20.25v-8.1l2.125-6.4q.125-.35 .413-.55t.662-.2h4.55v1.5H5.45l-1.375 4.15h8.8l1.5 1.5H3.5v5.25h15v-3.275q.275-.1 .525-.25t.45-.35l.525-.55v7.275q0 .319-.215 .534Q19.569 21 19.25 21h-.525q-.325 0-.525-.216-.2-.215-.2-.534v-1.35H4Zm11.538-13.367q.212-.217 .212-.537 0-.321-.217-.533-.217-.213-.537-.213-.321 0-.533 .217-.213 .217-.213 .537 0 .321 .217 .534 .217 .212 .538 .212 .32 0 .533-.217ZM16.825 12.475 11.575 7.225q-.144-.149-.235-.363Q11.25 6.648 11.25 6.425v-4.05q0-.45 .338-.787T12.375 1.25h4.05q.223 0 .437 .09 .214 .091 .363 .235l5.25 5.25q.325 .319 .325 .797Q22.8 8.1 22.475 8.425L18.425 12.475q-.319 .325-.797 .325Q17.15 12.8 16.825 12.475Zm.8-1.325 3.525-3.525-4.875-4.875H12.75v3.525l4.875 4.875Zm-.675-4.2Z" />
</vector>

Car Tag icon in SVG

npm install @material-symbols/svg-400

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

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

Car Tag 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

NameCar Tag
Ligaturecar_tag
Code pointU+F4E3
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/car_tag.svg, car_tag-fill.svg
FlutterSymbols.car_tag
LicenseApache License 2.0 (© Google LLC)

Keywords

transittravelservicetransportationvehicleonlinemovementspeedjourneyautomobiledrivetransportcommerce

Related icons