Location Chip icon

Location Chip is a Google Material Symbol from the Text 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

location_chip_outlined_fill0_wght400.svg

Location Chip 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=location_chip" />

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

Location Chip icon in React

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

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

Location Chip icon in Vue

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

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

Location Chip icon in Angular

With Angular Material and the font from the HTML tab:

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

Location Chip 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.location_chip, fill: 0, weight: 400)

Location Chip icon in Android

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

<!-- res/drawable/location_chip.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="M12 16q.1 0 .325-.2l.075-.15q.4-.8 1.1-1.375t1.2-1.3q.275-.425 .413-.887T15.25 11.125q0-1.325-.95-2.225t-2.3-.9q-1.35 0-2.312 .9T8.725 11.125q0 .5 .15 .963t.425 .887q.5 .725 1.188 1.3t1.087 1.375l.075 .15q.025 .05 .35 .2Zm-.887-3.862Q10.75 11.775 10.75 11.25t.363-.887Q11.475 10 12 10t.888 .363Q13.25 10.725 13.25 11.25t-.362 .888Q12.525 12.5 12 12.5t-.887-.362ZM8 19q-2.925 0-4.962-2.037T1 12q0-2.925 2.038-4.962T8 5h8q2.925 0 4.963 2.038T23 12q0 2.925-2.037 4.963T16 19H8Zm0-1.5h8q2.3 0 3.9-1.6t1.6-3.9q0-2.3-1.6-3.9t-3.9-1.6H8q-2.3 0-3.9 1.6t-1.6 3.9q0 2.3 1.6 3.9t3.9 1.6Zm4-5.5Z" />
</vector>

Location Chip icon in SVG

npm install @material-symbols/svg-400

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

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

Location Chip 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

NameLocation Chip
Ligaturelocation_chip
Code pointU+F850
CategoryText
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/location_chip.svg, location_chip-fill.svg
FlutterSymbols.location_chip
LicenseApache License 2.0 (© Google LLC)

Keywords

textinputmapsstopmappositionmarkerdestinationselectionplacefilterpathoption

Related icons