Home Heart icon
Used to represent home in UI or physical home space in travel scenarios. The Home Heart icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Home Heart icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { HomeHeart24Regular, HomeHeart24Filled } from "@fluentui/react-icons";
export function Example() {
return <HomeHeart24Regular aria-label="Home Heart" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_home_heart_24_regular.svg" width="24" height="24" alt="Home Heart"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5495 2.5319C11.3874 1.82531 12.6126 1.82531 13.4505 2.5319L20.2005 8.224C20.7074 8.65152 21 9.2809 21 9.94406V11.2613C20.5153 11.0862 20.0075 10.9992 19.5 10.9999V9.94406C19.5 9.72301 19.4025 9.51321 19.2335 9.37071L12.4835 3.6786C12.2042 3.44307 11.7958 3.44307 11.5165 3.6786L4.76651 9.37071C4.59752 9.51321 4.5 9.72301 4.5 9.94406L4.5 19.2539C4.5 19.392 4.61193 19.5039 4.75 19.5039H11.9187L13.3679 21.0039H4.75C3.7835 21.0039 3 20.2204 3 19.2539V9.94406C3 9.2809 3.29255 8.65152 3.79952 8.224L10.5495 2.5319ZM21.9768 18.1727C23.3411 16.7606 23.3411 14.4711 21.9768 13.0589C21.8276 12.9045 21.6683 12.767 21.5011 12.6464C20.1389 11.6637 18.2514 11.8012 17.0363 13.0589H16.9637C15.8917 11.9493 14.2963 11.7116 13 12.3458C12.3747 12.6518 11.85 13.1495 11.5 13.7501C10.6898 15.1402 10.8642 16.9731 12.0232 18.1727L16.4655 22.7708C16.7606 23.0762 17.2394 23.0762 17.5345 22.7708L21.9768 18.1727Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/home_heart_24_regular.svg";Details
| Name | Home Heart |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_home_heart_24_regular.svg |
| Filled file | ic_fluent_home_heart_24_filled.svg |
| React components | HomeHeart24Regular, HomeHeart24Filled |
| License | MIT (© Microsoft Corporation) |