hand open heart icon
hand-open-heart-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.
- Name
- hand-open-heart-20-filled
- Set
- Fluent UI System Icons
- Style
- 20 Filled
- Viewbox
- 20×20
- License
- MIT
3 other variants in Fluent UI System Icons
Related icons in Fluent UI System Icons
Use the hand open heart icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.392 10.515L10.041 6.85a.606.606 0 0 1-.868.01L5.28 2.97a.75.75 0 1 0-1.06 1.06l3.864 3.864a.576.576 0 1 1-.815.815L3.28 4.719A.75.75 0 0 0 2.22 5.78l4.052 4.053a.487.487 0 0 1-.689.69L3.28 8.22a.75.75 0 0 0-1.06 1.06l3.822 3.822a6 6 0 0 0-.506.115c-.78.213-1.776.657-2.371 1.607c-.254.405-.185.85.054 1.165c.227.296.6.478.998.475c2.154-.016 4.77.382 6.853 1.236c1.197.492 2.688.426 3.714-.52l1.25-1.154a3 3 0 0 0 .761-3.296l-.961-2.463l-.228.248a1.5 1.5 0 0 1-2.214 0m-3.669 3.432a.5.5 0 0 1-.446-.895c.603-.3 1.46-.436 2.305-.295c.856.143 1.742.577 2.334 1.466a.5.5 0 0 1-.832.554c-.408-.611-1.022-.926-1.666-1.034c-.656-.109-1.298.005-1.695.204m-.385-11.03a3.4 3.4 0 0 0-.29 2.047L7.22 3.03a.75.75 0 1 1 1.06-1.06c.286.286.652.604 1.058.947m5.161.086l-.628-.493a2.394 2.394 0 0 0-3.244 3.5l3.503 3.83a.5.5 0 0 0 .738 0l3.504-3.83a2.394 2.394 0 0 0-3.244-3.5z"/></svg>
React
import type { SVGProps } from "react";
export function FluentHandOpenHeart20Filled(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.392 10.515L10.041 6.85a.606.606 0 0 1-.868.01L5.28 2.97a.75.75 0 1 0-1.06 1.06l3.864 3.864a.576.576 0 1 1-.815.815L3.28 4.719A.75.75 0 0 0 2.22 5.78l4.052 4.053a.487.487 0 0 1-.689.69L3.28 8.22a.75.75 0 0 0-1.06 1.06l3.822 3.822a6 6 0 0 0-.506.115c-.78.213-1.776.657-2.371 1.607c-.254.405-.185.85.054 1.165c.227.296.6.478.998.475c2.154-.016 4.77.382 6.853 1.236c1.197.492 2.688.426 3.714-.52l1.25-1.154a3 3 0 0 0 .761-3.296l-.961-2.463l-.228.248a1.5 1.5 0 0 1-2.214 0m-3.669 3.432a.5.5 0 0 1-.446-.895c.603-.3 1.46-.436 2.305-.295c.856.143 1.742.577 2.334 1.466a.5.5 0 0 1-.832.554c-.408-.611-1.022-.926-1.666-1.034c-.656-.109-1.298.005-1.695.204m-.385-11.03a3.4 3.4 0 0 0-.29 2.047L7.22 3.03a.75.75 0 1 1 1.06-1.06c.286.286.652.604 1.058.947m5.161.086l-.628-.493a2.394 2.394 0 0 0-3.244 3.5l3.503 3.83a.5.5 0 0 0 .738 0l3.504-3.83a2.394 2.394 0 0 0-3.244-3.5z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.392 10.515L10.041 6.85a.606.606 0 0 1-.868.01L5.28 2.97a.75.75 0 1 0-1.06 1.06l3.864 3.864a.576.576 0 1 1-.815.815L3.28 4.719A.75.75 0 0 0 2.22 5.78l4.052 4.053a.487.487 0 0 1-.689.69L3.28 8.22a.75.75 0 0 0-1.06 1.06l3.822 3.822a6 6 0 0 0-.506.115c-.78.213-1.776.657-2.371 1.607c-.254.405-.185.85.054 1.165c.227.296.6.478.998.475c2.154-.016 4.77.382 6.853 1.236c1.197.492 2.688.426 3.714-.52l1.25-1.154a3 3 0 0 0 .761-3.296l-.961-2.463l-.228.248a1.5 1.5 0 0 1-2.214 0m-3.669 3.432a.5.5 0 0 1-.446-.895c.603-.3 1.46-.436 2.305-.295c.856.143 1.742.577 2.334 1.466a.5.5 0 0 1-.832.554c-.408-.611-1.022-.926-1.666-1.034c-.656-.109-1.298.005-1.695.204m-.385-11.03a3.4 3.4 0 0 0-.29 2.047L7.22 3.03a.75.75 0 1 1 1.06-1.06c.286.286.652.604 1.058.947m5.161.086l-.628-.493a2.394 2.394 0 0 0-3.244 3.5l3.503 3.83a.5.5 0 0 0 .738 0l3.504-3.83a2.394 2.394 0 0 0-3.244-3.5z"/></svg> </template>
CSS
.icon-hand-open-heart-20-filled {
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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.392%2010.515L10.041%206.85a.606.606%200%200%201-.868.01L5.28%202.97a.75.75%200%201%200-1.06%201.06l3.864%203.864a.576.576%200%201%201-.815.815L3.28%204.719A.75.75%200%200%200%202.22%205.78l4.052%204.053a.487.487%200%200%201-.689.69L3.28%208.22a.75.75%200%200%200-1.06%201.06l3.822%203.822a6%206%200%200%200-.506.115c-.78.213-1.776.657-2.371%201.607c-.254.405-.185.85.054%201.165c.227.296.6.478.998.475c2.154-.016%204.77.382%206.853%201.236c1.197.492%202.688.426%203.714-.52l1.25-1.154a3%203%200%200%200%20.761-3.296l-.961-2.463l-.228.248a1.5%201.5%200%200%201-2.214%200m-3.669%203.432a.5.5%200%200%201-.446-.895c.603-.3%201.46-.436%202.305-.295c.856.143%201.742.577%202.334%201.466a.5.5%200%200%201-.832.554c-.408-.611-1.022-.926-1.666-1.034c-.656-.109-1.298.005-1.695.204m-.385-11.03a3.4%203.4%200%200%200-.29%202.047L7.22%203.03a.75.75%200%201%201%201.06-1.06c.286.286.652.604%201.058.947m5.161.086l-.628-.493a2.394%202.394%200%200%200-3.244%203.5l3.503%203.83a.5.5%200%200%200%20.738%200l3.504-3.83a2.394%202.394%200%200%200-3.244-3.5z%22%2F%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.392%2010.515L10.041%206.85a.606.606%200%200%201-.868.01L5.28%202.97a.75.75%200%201%200-1.06%201.06l3.864%203.864a.576.576%200%201%201-.815.815L3.28%204.719A.75.75%200%200%200%202.22%205.78l4.052%204.053a.487.487%200%200%201-.689.69L3.28%208.22a.75.75%200%200%200-1.06%201.06l3.822%203.822a6%206%200%200%200-.506.115c-.78.213-1.776.657-2.371%201.607c-.254.405-.185.85.054%201.165c.227.296.6.478.998.475c2.154-.016%204.77.382%206.853%201.236c1.197.492%202.688.426%203.714-.52l1.25-1.154a3%203%200%200%200%20.761-3.296l-.961-2.463l-.228.248a1.5%201.5%200%200%201-2.214%200m-3.669%203.432a.5.5%200%200%201-.446-.895c.603-.3%201.46-.436%202.305-.295c.856.143%201.742.577%202.334%201.466a.5.5%200%200%201-.832.554c-.408-.611-1.022-.926-1.666-1.034c-.656-.109-1.298.005-1.695.204m-.385-11.03a3.4%203.4%200%200%200-.29%202.047L7.22%203.03a.75.75%200%201%201%201.06-1.06c.286.286.652.604%201.058.947m5.161.086l-.628-.493a2.394%202.394%200%200%200-3.244%203.5l3.503%203.83a.5.5%200%200%200%20.738%200l3.504-3.83a2.394%202.394%200%200%200-3.244-3.5z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/hand-open-heart-20-filled.svg?color=%231a73e8&size=48