white-heart from Fluent Emoji Flat by Microsoft Corporation · Default · Smileys & Emotion · MIT Free for personal and commercial use.

Name
white-heart
Set
Fluent Emoji Flat
Style
Default
Category
Smileys & Emotion
Viewbox
32×32
License
MIT

The same emoji in other sets

More smileys & emotion icons from Fluent Emoji Flat

Use the white heart emoji

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><g fill="none"><path fill="#9b9b9b" d="M26.223 5.553c-2.47-1.235-4.742-1.107-6.59-.394c-1.556.6-2.804 1.609-3.633 2.55c-.829-.941-2.078-1.95-3.634-2.55c-1.848-.713-4.12-.841-6.59.394c-3.203 1.601-4.412 4.431-4.213 7.418c.197 2.954 1.764 6.063 4.083 8.382c2.17 2.17 6.35 6.1 8.963 8.209a2.26 2.26 0 0 0 2.802.05c2.856-2.172 6.739-6.055 8.928-8.245l.014-.014c2.32-2.319 3.886-5.428 4.083-8.382c.2-2.987-1.01-5.817-4.213-7.418"/><path fill="#f4f4f4" d="M16.4 8.8a8.47 8.47 0 0 1 3.593-2.708c1.61-.62 3.588-.742 5.783.355c2.797 1.398 3.839 3.818 3.663 6.457c-.178 2.67-1.612 5.562-3.793 7.742c-2.204 2.205-6.044 6.044-8.84 8.17a1.264 1.264 0 0 1-1.57-.032c-2.572-2.077-6.723-5.978-8.882-8.138c-2.181-2.18-3.615-5.071-3.793-7.742c-.176-2.639.866-5.059 3.663-6.457c2.195-1.097 4.172-.976 5.783-.355A8.47 8.47 0 0 1 15.6 8.8l.4.533z"/><path fill="#cfcfcf" d="M23.995 5.798a6.75 6.75 0 0 0-4.002.294A8.47 8.47 0 0 0 16.4 8.8l-.4.533v2.216c1.129-2.387 3.75-5.485 7.995-5.751m-13.261-.067c-1.34-.245-2.864-.107-4.51.716c-2.797 1.398-3.839 3.818-3.663 6.457c.178 2.67 1.612 5.562 3.793 7.742c2.16 2.16 6.31 6.06 8.883 8.138a1.264 1.264 0 0 0 1.57.032q.329-.252.677-.532c-2.818-2.147-6.553-5.3-8.625-7.152c-4.957-4.43-6.609-11.814 0-14.768a10 10 0 0 1 1.874-.633"/><ellipse cx="23.477" cy="12.594" fill="#fff" rx="2.836" ry="4.781" transform="rotate(30 23.477 12.594)"/></g></svg>

React

import type { SVGProps } from "react";

export function FluentEmojiFlatWhiteHeart(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><g fill="none"><path fill="#9b9b9b" d="M26.223 5.553c-2.47-1.235-4.742-1.107-6.59-.394c-1.556.6-2.804 1.609-3.633 2.55c-.829-.941-2.078-1.95-3.634-2.55c-1.848-.713-4.12-.841-6.59.394c-3.203 1.601-4.412 4.431-4.213 7.418c.197 2.954 1.764 6.063 4.083 8.382c2.17 2.17 6.35 6.1 8.963 8.209a2.26 2.26 0 0 0 2.802.05c2.856-2.172 6.739-6.055 8.928-8.245l.014-.014c2.32-2.319 3.886-5.428 4.083-8.382c.2-2.987-1.01-5.817-4.213-7.418"/><path fill="#f4f4f4" d="M16.4 8.8a8.47 8.47 0 0 1 3.593-2.708c1.61-.62 3.588-.742 5.783.355c2.797 1.398 3.839 3.818 3.663 6.457c-.178 2.67-1.612 5.562-3.793 7.742c-2.204 2.205-6.044 6.044-8.84 8.17a1.264 1.264 0 0 1-1.57-.032c-2.572-2.077-6.723-5.978-8.882-8.138c-2.181-2.18-3.615-5.071-3.793-7.742c-.176-2.639.866-5.059 3.663-6.457c2.195-1.097 4.172-.976 5.783-.355A8.47 8.47 0 0 1 15.6 8.8l.4.533z"/><path fill="#cfcfcf" d="M23.995 5.798a6.75 6.75 0 0 0-4.002.294A8.47 8.47 0 0 0 16.4 8.8l-.4.533v2.216c1.129-2.387 3.75-5.485 7.995-5.751m-13.261-.067c-1.34-.245-2.864-.107-4.51.716c-2.797 1.398-3.839 3.818-3.663 6.457c.178 2.67 1.612 5.562 3.793 7.742c2.16 2.16 6.31 6.06 8.883 8.138a1.264 1.264 0 0 0 1.57.032q.329-.252.677-.532c-2.818-2.147-6.553-5.3-8.625-7.152c-4.957-4.43-6.609-11.814 0-14.768a10 10 0 0 1 1.874-.633"/><ellipse cx="23.477" cy="12.594" fill="#fff" rx="2.836" ry="4.781" transform="rotate(30 23.477 12.594)"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><g fill="none"><path fill="#9b9b9b" d="M26.223 5.553c-2.47-1.235-4.742-1.107-6.59-.394c-1.556.6-2.804 1.609-3.633 2.55c-.829-.941-2.078-1.95-3.634-2.55c-1.848-.713-4.12-.841-6.59.394c-3.203 1.601-4.412 4.431-4.213 7.418c.197 2.954 1.764 6.063 4.083 8.382c2.17 2.17 6.35 6.1 8.963 8.209a2.26 2.26 0 0 0 2.802.05c2.856-2.172 6.739-6.055 8.928-8.245l.014-.014c2.32-2.319 3.886-5.428 4.083-8.382c.2-2.987-1.01-5.817-4.213-7.418"/><path fill="#f4f4f4" d="M16.4 8.8a8.47 8.47 0 0 1 3.593-2.708c1.61-.62 3.588-.742 5.783.355c2.797 1.398 3.839 3.818 3.663 6.457c-.178 2.67-1.612 5.562-3.793 7.742c-2.204 2.205-6.044 6.044-8.84 8.17a1.264 1.264 0 0 1-1.57-.032c-2.572-2.077-6.723-5.978-8.882-8.138c-2.181-2.18-3.615-5.071-3.793-7.742c-.176-2.639.866-5.059 3.663-6.457c2.195-1.097 4.172-.976 5.783-.355A8.47 8.47 0 0 1 15.6 8.8l.4.533z"/><path fill="#cfcfcf" d="M23.995 5.798a6.75 6.75 0 0 0-4.002.294A8.47 8.47 0 0 0 16.4 8.8l-.4.533v2.216c1.129-2.387 3.75-5.485 7.995-5.751m-13.261-.067c-1.34-.245-2.864-.107-4.51.716c-2.797 1.398-3.839 3.818-3.663 6.457c.178 2.67 1.612 5.562 3.793 7.742c2.16 2.16 6.31 6.06 8.883 8.138a1.264 1.264 0 0 0 1.57.032q.329-.252.677-.532c-2.818-2.147-6.553-5.3-8.625-7.152c-4.957-4.43-6.609-11.814 0-14.768a10 10 0 0 1 1.874-.633"/><ellipse cx="23.477" cy="12.594" fill="#fff" rx="2.836" ry="4.781" transform="rotate(30 23.477 12.594)"/></g></svg>
</template>

CSS

.icon-white-heart {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%239b9b9b%22%20d%3D%22M26.223%205.553c-2.47-1.235-4.742-1.107-6.59-.394c-1.556.6-2.804%201.609-3.633%202.55c-.829-.941-2.078-1.95-3.634-2.55c-1.848-.713-4.12-.841-6.59.394c-3.203%201.601-4.412%204.431-4.213%207.418c.197%202.954%201.764%206.063%204.083%208.382c2.17%202.17%206.35%206.1%208.963%208.209a2.26%202.26%200%200%200%202.802.05c2.856-2.172%206.739-6.055%208.928-8.245l.014-.014c2.32-2.319%203.886-5.428%204.083-8.382c.2-2.987-1.01-5.817-4.213-7.418%22%2F%3E%3Cpath%20fill%3D%22%23f4f4f4%22%20d%3D%22M16.4%208.8a8.47%208.47%200%200%201%203.593-2.708c1.61-.62%203.588-.742%205.783.355c2.797%201.398%203.839%203.818%203.663%206.457c-.178%202.67-1.612%205.562-3.793%207.742c-2.204%202.205-6.044%206.044-8.84%208.17a1.264%201.264%200%200%201-1.57-.032c-2.572-2.077-6.723-5.978-8.882-8.138c-2.181-2.18-3.615-5.071-3.793-7.742c-.176-2.639.866-5.059%203.663-6.457c2.195-1.097%204.172-.976%205.783-.355A8.47%208.47%200%200%201%2015.6%208.8l.4.533z%22%2F%3E%3Cpath%20fill%3D%22%23cfcfcf%22%20d%3D%22M23.995%205.798a6.75%206.75%200%200%200-4.002.294A8.47%208.47%200%200%200%2016.4%208.8l-.4.533v2.216c1.129-2.387%203.75-5.485%207.995-5.751m-13.261-.067c-1.34-.245-2.864-.107-4.51.716c-2.797%201.398-3.839%203.818-3.663%206.457c.178%202.67%201.612%205.562%203.793%207.742c2.16%202.16%206.31%206.06%208.883%208.138a1.264%201.264%200%200%200%201.57.032q.329-.252.677-.532c-2.818-2.147-6.553-5.3-8.625-7.152c-4.957-4.43-6.609-11.814%200-14.768a10%2010%200%200%201%201.874-.633%22%2F%3E%3Cellipse%20cx%3D%2223.477%22%20cy%3D%2212.594%22%20fill%3D%22%23fff%22%20rx%3D%222.836%22%20ry%3D%224.781%22%20transform%3D%22rotate(30%2023.477%2012.594)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%239b9b9b%22%20d%3D%22M26.223%205.553c-2.47-1.235-4.742-1.107-6.59-.394c-1.556.6-2.804%201.609-3.633%202.55c-.829-.941-2.078-1.95-3.634-2.55c-1.848-.713-4.12-.841-6.59.394c-3.203%201.601-4.412%204.431-4.213%207.418c.197%202.954%201.764%206.063%204.083%208.382c2.17%202.17%206.35%206.1%208.963%208.209a2.26%202.26%200%200%200%202.802.05c2.856-2.172%206.739-6.055%208.928-8.245l.014-.014c2.32-2.319%203.886-5.428%204.083-8.382c.2-2.987-1.01-5.817-4.213-7.418%22%2F%3E%3Cpath%20fill%3D%22%23f4f4f4%22%20d%3D%22M16.4%208.8a8.47%208.47%200%200%201%203.593-2.708c1.61-.62%203.588-.742%205.783.355c2.797%201.398%203.839%203.818%203.663%206.457c-.178%202.67-1.612%205.562-3.793%207.742c-2.204%202.205-6.044%206.044-8.84%208.17a1.264%201.264%200%200%201-1.57-.032c-2.572-2.077-6.723-5.978-8.882-8.138c-2.181-2.18-3.615-5.071-3.793-7.742c-.176-2.639.866-5.059%203.663-6.457c2.195-1.097%204.172-.976%205.783-.355A8.47%208.47%200%200%201%2015.6%208.8l.4.533z%22%2F%3E%3Cpath%20fill%3D%22%23cfcfcf%22%20d%3D%22M23.995%205.798a6.75%206.75%200%200%200-4.002.294A8.47%208.47%200%200%200%2016.4%208.8l-.4.533v2.216c1.129-2.387%203.75-5.485%207.995-5.751m-13.261-.067c-1.34-.245-2.864-.107-4.51.716c-2.797%201.398-3.839%203.818-3.663%206.457c.178%202.67%201.612%205.562%203.793%207.742c2.16%202.16%206.31%206.06%208.883%208.138a1.264%201.264%200%200%200%201.57.032q.329-.252.677-.532c-2.818-2.147-6.553-5.3-8.625-7.152c-4.957-4.43-6.609-11.814%200-14.768a10%2010%200%200%201%201.874-.633%22%2F%3E%3Cellipse%20cx%3D%2223.477%22%20cy%3D%2212.594%22%20fill%3D%22%23fff%22%20rx%3D%222.836%22%20ry%3D%224.781%22%20transform%3D%22rotate(30%2023.477%2012.594)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent-emoji-flat/white-heart.svg?color=%231a73e8&size=48