Favorite icon

Favorite is a Google Material Symbol from the UI actions category. It's one of the 100 most used Material Symbols. 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

favorite_outlined_fill0_wght400.svg

Favorite 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=favorite" />

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

Favorite icon in React

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

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

Favorite icon in Vue

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

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

Favorite icon in Angular

With Angular Material and the font from the HTML tab:

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

Favorite 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.favorite, fill: 0, weight: 400)

Favorite icon in Android

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

<!-- res/drawable/favorite.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 20.975-1.025-.925q-2.644-2.428-4.372-4.189Q4.875 14.1 3.85 12.713T2.413 10.2Q2 9.075 2 7.925q0-2.254 1.513-3.765Q5.025 2.65 7.25 2.65q1.425 0 2.638 .675t2.112 1.95q1.05-1.35 2.225-1.987T16.75 2.65q2.225 0 3.738 1.51Q22 5.671 22 7.925q0 1.15-.412 2.275T20.15 12.713Q19.125 14.1 17.397 15.861 15.669 17.622 13.025 20.05l-1.025 .925Zm0-1.975q2.531-2.325 4.166-3.987Q17.8 13.35 18.763 12.1t1.35-2.228q.387-.979 .387-1.943 0-1.654-1.05-2.716T16.756 4.15q-1.288 0-2.385 .788T12.6 7.15h-1.225q-.65-1.4-1.746-2.2-1.097-.8-2.385-.8Q5.6 4.15 4.55 5.213t-1.05 2.72q0 .967 .388 1.955 .387 .987 1.35 2.25T7.85 15.05q1.65 1.65 4.15 3.95Zm0-7.425Z" />
</vector>

Favorite icon in SVG

npm install @material-symbols/svg-400

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

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

Favorite 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

NameFavorite
Ligaturefavorite
Code pointU+E87D
CategoryUI actions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/favorite.svg, favorite-fill.svg
FlutterSymbols.favorite
LicenseApache License 2.0 (© Google LLC)

Keywords

ui actionsmediaiconstatussocialtogglesavecollectionobjectborderfeedbackfullempty

Related icons