smart home icon

smart-home from Reicon by REICON · Outline · UI · MIT Free for personal and commercial use.

Name
smart-home
Set
Reicon
Style
Outline
Category
UI
Viewbox
24×24
License
MIT

2 other variants in Reicon

The same icon in other sets

All smart home icons →

More ui icons from Reicon

Use the smart home icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M8.28 4.504c1.015-.63 1.73-1.072 2.327-1.363c.581-.283.993-.391 1.393-.391s.812.108 1.393.391c.598.29 1.312.733 2.327 1.363l2 1.241c.961.597 1.636 1.016 2.14 1.402c.489.375.77.684.963 1.036c.193.353.306.766.365 1.398c.061.648.062 1.465.062 2.623v1.521c0 1.97-.002 3.376-.14 4.443c-.136 1.048-.393 1.656-.82 2.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144a.75.75 0 0 0 0 1.5h.058c1.836 0 3.294 0 4.434-.159c1.177-.163 2.128-.509 2.876-1.282c.743-.769 1.073-1.742 1.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113 0-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.427-1.416c-.699-.34-1.342-.542-2.05-.542s-1.351.203-2.05.542c-.674.328-1.454.812-2.427 1.416L5.456 4.491c-.92.572-1.659 1.03-2.227 1.465c-.589.45-1.041.91-1.368 1.507c-.398.728-.53 1.516-.58 2.499a.75.75 0 1 0 1.498.076c.046-.904.161-1.423.398-1.855c.193-.352.474-.661.964-1.036c.503-.386 1.178-.805 2.139-1.402z"/><path d="M2 12.25a.75.75 0 0 0 0 1.5A8.25 8.25 0 0 1 10.25 22a.75.75 0 0 0 1.5 0A9.75 9.75 0 0 0 2 12.25"/><path d="M1.25 16a.75.75 0 0 1 .75-.75A6.75 6.75 0 0 1 8.75 22a.75.75 0 0 1-1.5 0c0-2.9-2.35-5.25-5.25-5.25a.75.75 0 0 1-.75-.75"/><path d="M2 18.25a.75.75 0 0 0 0 1.5A2.25 2.25 0 0 1 4.25 22a.75.75 0 0 0 1.5 0A3.75 3.75 0 0 0 2 18.25"/></g></svg>

React

import type { SVGProps } from "react";

export function ReiconSmartHome(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M8.28 4.504c1.015-.63 1.73-1.072 2.327-1.363c.581-.283.993-.391 1.393-.391s.812.108 1.393.391c.598.29 1.312.733 2.327 1.363l2 1.241c.961.597 1.636 1.016 2.14 1.402c.489.375.77.684.963 1.036c.193.353.306.766.365 1.398c.061.648.062 1.465.062 2.623v1.521c0 1.97-.002 3.376-.14 4.443c-.136 1.048-.393 1.656-.82 2.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144a.75.75 0 0 0 0 1.5h.058c1.836 0 3.294 0 4.434-.159c1.177-.163 2.128-.509 2.876-1.282c.743-.769 1.073-1.742 1.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113 0-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.427-1.416c-.699-.34-1.342-.542-2.05-.542s-1.351.203-2.05.542c-.674.328-1.454.812-2.427 1.416L5.456 4.491c-.92.572-1.659 1.03-2.227 1.465c-.589.45-1.041.91-1.368 1.507c-.398.728-.53 1.516-.58 2.499a.75.75 0 1 0 1.498.076c.046-.904.161-1.423.398-1.855c.193-.352.474-.661.964-1.036c.503-.386 1.178-.805 2.139-1.402z"/><path d="M2 12.25a.75.75 0 0 0 0 1.5A8.25 8.25 0 0 1 10.25 22a.75.75 0 0 0 1.5 0A9.75 9.75 0 0 0 2 12.25"/><path d="M1.25 16a.75.75 0 0 1 .75-.75A6.75 6.75 0 0 1 8.75 22a.75.75 0 0 1-1.5 0c0-2.9-2.35-5.25-5.25-5.25a.75.75 0 0 1-.75-.75"/><path d="M2 18.25a.75.75 0 0 0 0 1.5A2.25 2.25 0 0 1 4.25 22a.75.75 0 0 0 1.5 0A3.75 3.75 0 0 0 2 18.25"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M8.28 4.504c1.015-.63 1.73-1.072 2.327-1.363c.581-.283.993-.391 1.393-.391s.812.108 1.393.391c.598.29 1.312.733 2.327 1.363l2 1.241c.961.597 1.636 1.016 2.14 1.402c.489.375.77.684.963 1.036c.193.353.306.766.365 1.398c.061.648.062 1.465.062 2.623v1.521c0 1.97-.002 3.376-.14 4.443c-.136 1.048-.393 1.656-.82 2.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144a.75.75 0 0 0 0 1.5h.058c1.836 0 3.294 0 4.434-.159c1.177-.163 2.128-.509 2.876-1.282c.743-.769 1.073-1.742 1.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113 0-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.427-1.416c-.699-.34-1.342-.542-2.05-.542s-1.351.203-2.05.542c-.674.328-1.454.812-2.427 1.416L5.456 4.491c-.92.572-1.659 1.03-2.227 1.465c-.589.45-1.041.91-1.368 1.507c-.398.728-.53 1.516-.58 2.499a.75.75 0 1 0 1.498.076c.046-.904.161-1.423.398-1.855c.193-.352.474-.661.964-1.036c.503-.386 1.178-.805 2.139-1.402z"/><path d="M2 12.25a.75.75 0 0 0 0 1.5A8.25 8.25 0 0 1 10.25 22a.75.75 0 0 0 1.5 0A9.75 9.75 0 0 0 2 12.25"/><path d="M1.25 16a.75.75 0 0 1 .75-.75A6.75 6.75 0 0 1 8.75 22a.75.75 0 0 1-1.5 0c0-2.9-2.35-5.25-5.25-5.25a.75.75 0 0 1-.75-.75"/><path d="M2 18.25a.75.75 0 0 0 0 1.5A2.25 2.25 0 0 1 4.25 22a.75.75 0 0 0 1.5 0A3.75 3.75 0 0 0 2 18.25"/></g></svg>
</template>

CSS

.icon-smart-home {
  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%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M8.28%204.504c1.015-.63%201.73-1.072%202.327-1.363c.581-.283.993-.391%201.393-.391s.812.108%201.393.391c.598.29%201.312.733%202.327%201.363l2%201.241c.961.597%201.636%201.016%202.14%201.402c.489.375.77.684.963%201.036c.193.353.306.766.365%201.398c.061.648.062%201.465.062%202.623v1.521c0%201.97-.002%203.376-.14%204.443c-.136%201.048-.393%201.656-.82%202.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144a.75.75%200%200%200%200%201.5h.058c1.836%200%203.294%200%204.434-.159c1.177-.163%202.128-.509%202.876-1.282c.743-.769%201.073-1.742%201.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113%200-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.427-1.416c-.699-.34-1.342-.542-2.05-.542s-1.351.203-2.05.542c-.674.328-1.454.812-2.427%201.416L5.456%204.491c-.92.572-1.659%201.03-2.227%201.465c-.589.45-1.041.91-1.368%201.507c-.398.728-.53%201.516-.58%202.499a.75.75%200%201%200%201.498.076c.046-.904.161-1.423.398-1.855c.193-.352.474-.661.964-1.036c.503-.386%201.178-.805%202.139-1.402z%22%2F%3E%3Cpath%20d%3D%22M2%2012.25a.75.75%200%200%200%200%201.5A8.25%208.25%200%200%201%2010.25%2022a.75.75%200%200%200%201.5%200A9.75%209.75%200%200%200%202%2012.25%22%2F%3E%3Cpath%20d%3D%22M1.25%2016a.75.75%200%200%201%20.75-.75A6.75%206.75%200%200%201%208.75%2022a.75.75%200%200%201-1.5%200c0-2.9-2.35-5.25-5.25-5.25a.75.75%200%200%201-.75-.75%22%2F%3E%3Cpath%20d%3D%22M2%2018.25a.75.75%200%200%200%200%201.5A2.25%202.25%200%200%201%204.25%2022a.75.75%200%200%200%201.5%200A3.75%203.75%200%200%200%202%2018.25%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%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M8.28%204.504c1.015-.63%201.73-1.072%202.327-1.363c.581-.283.993-.391%201.393-.391s.812.108%201.393.391c.598.29%201.312.733%202.327%201.363l2%201.241c.961.597%201.636%201.016%202.14%201.402c.489.375.77.684.963%201.036c.193.353.306.766.365%201.398c.061.648.062%201.465.062%202.623v1.521c0%201.97-.002%203.376-.14%204.443c-.136%201.048-.393%201.656-.82%202.099c-.425.439-1.003.7-2.004.839c-1.026.142-2.379.144-4.286.144a.75.75%200%200%200%200%201.5h.058c1.836%200%203.294%200%204.434-.159c1.177-.163%202.128-.509%202.876-1.282c.743-.769%201.073-1.742%201.23-2.947c.152-1.175.152-2.678.152-4.582v-1.613c0-1.113%200-2-.068-2.726c-.07-.75-.217-1.383-.543-1.978c-.327-.597-.78-1.056-1.368-1.507c-.568-.436-1.306-.893-2.227-1.465l-2.067-1.283c-.973-.604-1.753-1.088-2.427-1.416c-.699-.34-1.342-.542-2.05-.542s-1.351.203-2.05.542c-.674.328-1.454.812-2.427%201.416L5.456%204.491c-.92.572-1.659%201.03-2.227%201.465c-.589.45-1.041.91-1.368%201.507c-.398.728-.53%201.516-.58%202.499a.75.75%200%201%200%201.498.076c.046-.904.161-1.423.398-1.855c.193-.352.474-.661.964-1.036c.503-.386%201.178-.805%202.139-1.402z%22%2F%3E%3Cpath%20d%3D%22M2%2012.25a.75.75%200%200%200%200%201.5A8.25%208.25%200%200%201%2010.25%2022a.75.75%200%200%200%201.5%200A9.75%209.75%200%200%200%202%2012.25%22%2F%3E%3Cpath%20d%3D%22M1.25%2016a.75.75%200%200%201%20.75-.75A6.75%206.75%200%200%201%208.75%2022a.75.75%200%200%201-1.5%200c0-2.9-2.35-5.25-5.25-5.25a.75.75%200%200%201-.75-.75%22%2F%3E%3Cpath%20d%3D%22M2%2018.25a.75.75%200%200%200%200%201.5A2.25%202.25%200%200%201%204.25%2022a.75.75%200%200%200%201.5%200A3.75%203.75%200%200%200%202%2018.25%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/smart-home.svg?color=%231a73e8&size=48