Add Home Work icon

Add Home Work is a Google Material Symbol from the Maps 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.

GradeOptical size

Outlined, unfilled, weight 400

add_home_work_outlined_fill0_wght400.svg

Add Home Work 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=add_home_work" />

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

Add Home Work icon in React

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

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

Add Home Work icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import AddHomeWorkOutlinedIcon from "@mui/icons-material/AddHomeWorkOutlined";

<AddHomeWorkOutlinedIcon />

Add Home Work icon in Vue

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

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

Add Home Work icon in Angular

With Angular Material and the font from the HTML tab:

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

Add Home Work 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.add_home_work, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.add_home_work_outlined)

Add Home Work icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_add_home_work.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="M4.95 19.5v-5.025h5.65v5.025-5.025H4.95v5.025Zm11.075-9.125ZM1 21v-9.75l6.775-4.85 6.8 4.9q-.227 .289-.462 .588T13.65 12.475L7.775 8.25 2.5 12.036V19.5h2.45v-5.025h5.65v6.525h-1.5v-5.025H6.45v5.025H1Zm22-18v11.275q-.32-.383-.698-.692T21.5 13v-8.5H11.625v2.8l-1.5-1.05v-3.25h12.875ZM17.425 8.425h1.5v-1.5h-1.5v1.5Zm.888 14.575Q16.375 23 15 21.613T13.625 18.325q0-1.961 1.375-3.343Q16.375 13.6 18.325 13.6q1.925 0 3.313 1.382Q23.025 16.364 23.025 18.325q0 1.9-1.387 3.288T18.313 23ZM17.95 21.5h.825v-2.75h2.75v-.825H18.775v-2.75h-.825v2.75H15.2v.825h2.75v2.75Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_add_home_work), contentDescription = "Add Home Work")

Add Home Work icon in SVG

npm install @material-symbols/svg-400

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

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

Add Home Work 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

NameAdd Home Work
Ligatureadd_home_work
Code pointU+F8ED
CategoryMaps
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/add_home_work.svg, add_home_work-fill.svg
FlutterSymbols.add_home_work (Material Icons: Icons.add_home_work)
MUI@mui/icons-material/AddHomeWork
LicenseApache License 2.0 (© Google LLC)

Keywords

mapspluslocationnewhousebusinesscreatebuildingmanagementoffice

Related icons