smart speaker icon
smart-speaker from Reicon by REICON · Outline · Devices · MIT Free for personal and commercial use.
- Name
- smart-speaker
- Set
- Reicon
- Style
- Outline
- Category
- Devices
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
The same icon in other sets
More devices icons from Reicon
Use the smart speaker icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M16.407 3.158a24 24 0 0 0-8.815 0l-.215.04a4.08 4.08 0 0 0-3.31 3.546l-.017.137a46 46 0 0 0-.273 6.84c.595.463 1.816 1.234 4.143 1.68c.321-.805.776-1.458 1.421-1.918c.738-.524 1.637-.733 2.659-.733s1.921.209 2.659.733c.646.46 1.1 1.114 1.422 1.92a12.4 12.4 0 0 0 2.195-.616c.98-.384 1.582-.803 1.944-1.101a46 46 0 0 0-.287-7.05a3.95 3.95 0 0 0-3.203-3.417zm3.707 12.413a10 10 0 0 1-1.291.613C17.325 16.77 15.15 17.25 12 17.25c-4.221 0-6.697-.874-8.122-1.671q.069.91.172 1.82a3.964 3.964 0 0 0 3.453 3.477l1.015.127c.498.062.737.092.975.116c1.667.175 3.347.175 5.014 0c.238-.024.476-.054.974-.116l.906-.113a4.09 4.09 0 0 0 3.562-3.6l.018-.153q.087-.782.147-1.566m-5.575.056c-.214-.426-.465-.72-.75-.921c-.405-.288-.965-.456-1.789-.456s-1.384.168-1.79.456c-.283.202-.535.494-.749.92c.755.079 1.598.124 2.539.124c.944 0 1.787-.045 2.54-.123M7.317 1.684a25.5 25.5 0 0 1 9.366 0l.323.06a5.45 5.45 0 0 1 4.416 4.716c.425 3.601.437 7.24.035 10.843l-.017.154a5.59 5.59 0 0 1-4.867 4.921l-.917.115c-.485.06-.74.092-.994.118c-1.77.185-3.555.185-5.325 0c-.254-.026-.508-.058-.994-.118l-1.026-.128A5.464 5.464 0 0 1 2.56 17.57a47.7 47.7 0 0 1 0-10.86l.016-.137a5.58 5.58 0 0 1 4.526-4.849zm1.252 2.238a.75.75 0 0 1-.08 1.058a.8.8 0 0 0-.185.24a.5.5 0 0 0-.054.191c0 .14.102.443.776.75c.649.297 1.657.5 2.974.5s2.325-.203 2.974-.5c.674-.307.776-.61.776-.75c0-.03-.014-.149-.239-.342a.75.75 0 0 1 .978-1.138c.416.358.761.857.761 1.48c0 1.014-.767 1.711-1.653 2.115c-.91.416-2.153.635-3.597.635s-2.686-.22-3.597-.635c-.886-.404-1.653-1.1-1.653-2.115c0-.569.294-1.167.761-1.568a.75.75 0 0 1 1.058.08" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function ReiconSmartSpeaker(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fillRule="evenodd" d="M16.407 3.158a24 24 0 0 0-8.815 0l-.215.04a4.08 4.08 0 0 0-3.31 3.546l-.017.137a46 46 0 0 0-.273 6.84c.595.463 1.816 1.234 4.143 1.68c.321-.805.776-1.458 1.421-1.918c.738-.524 1.637-.733 2.659-.733s1.921.209 2.659.733c.646.46 1.1 1.114 1.422 1.92a12.4 12.4 0 0 0 2.195-.616c.98-.384 1.582-.803 1.944-1.101a46 46 0 0 0-.287-7.05a3.95 3.95 0 0 0-3.203-3.417zm3.707 12.413a10 10 0 0 1-1.291.613C17.325 16.77 15.15 17.25 12 17.25c-4.221 0-6.697-.874-8.122-1.671q.069.91.172 1.82a3.964 3.964 0 0 0 3.453 3.477l1.015.127c.498.062.737.092.975.116c1.667.175 3.347.175 5.014 0c.238-.024.476-.054.974-.116l.906-.113a4.09 4.09 0 0 0 3.562-3.6l.018-.153q.087-.782.147-1.566m-5.575.056c-.214-.426-.465-.72-.75-.921c-.405-.288-.965-.456-1.789-.456s-1.384.168-1.79.456c-.283.202-.535.494-.749.92c.755.079 1.598.124 2.539.124c.944 0 1.787-.045 2.54-.123M7.317 1.684a25.5 25.5 0 0 1 9.366 0l.323.06a5.45 5.45 0 0 1 4.416 4.716c.425 3.601.437 7.24.035 10.843l-.017.154a5.59 5.59 0 0 1-4.867 4.921l-.917.115c-.485.06-.74.092-.994.118c-1.77.185-3.555.185-5.325 0c-.254-.026-.508-.058-.994-.118l-1.026-.128A5.464 5.464 0 0 1 2.56 17.57a47.7 47.7 0 0 1 0-10.86l.016-.137a5.58 5.58 0 0 1 4.526-4.849zm1.252 2.238a.75.75 0 0 1-.08 1.058a.8.8 0 0 0-.185.24a.5.5 0 0 0-.054.191c0 .14.102.443.776.75c.649.297 1.657.5 2.974.5s2.325-.203 2.974-.5c.674-.307.776-.61.776-.75c0-.03-.014-.149-.239-.342a.75.75 0 0 1 .978-1.138c.416.358.761.857.761 1.48c0 1.014-.767 1.711-1.653 2.115c-.91.416-2.153.635-3.597.635s-2.686-.22-3.597-.635c-.886-.404-1.653-1.1-1.653-2.115c0-.569.294-1.167.761-1.568a.75.75 0 0 1 1.058.08" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M16.407 3.158a24 24 0 0 0-8.815 0l-.215.04a4.08 4.08 0 0 0-3.31 3.546l-.017.137a46 46 0 0 0-.273 6.84c.595.463 1.816 1.234 4.143 1.68c.321-.805.776-1.458 1.421-1.918c.738-.524 1.637-.733 2.659-.733s1.921.209 2.659.733c.646.46 1.1 1.114 1.422 1.92a12.4 12.4 0 0 0 2.195-.616c.98-.384 1.582-.803 1.944-1.101a46 46 0 0 0-.287-7.05a3.95 3.95 0 0 0-3.203-3.417zm3.707 12.413a10 10 0 0 1-1.291.613C17.325 16.77 15.15 17.25 12 17.25c-4.221 0-6.697-.874-8.122-1.671q.069.91.172 1.82a3.964 3.964 0 0 0 3.453 3.477l1.015.127c.498.062.737.092.975.116c1.667.175 3.347.175 5.014 0c.238-.024.476-.054.974-.116l.906-.113a4.09 4.09 0 0 0 3.562-3.6l.018-.153q.087-.782.147-1.566m-5.575.056c-.214-.426-.465-.72-.75-.921c-.405-.288-.965-.456-1.789-.456s-1.384.168-1.79.456c-.283.202-.535.494-.749.92c.755.079 1.598.124 2.539.124c.944 0 1.787-.045 2.54-.123M7.317 1.684a25.5 25.5 0 0 1 9.366 0l.323.06a5.45 5.45 0 0 1 4.416 4.716c.425 3.601.437 7.24.035 10.843l-.017.154a5.59 5.59 0 0 1-4.867 4.921l-.917.115c-.485.06-.74.092-.994.118c-1.77.185-3.555.185-5.325 0c-.254-.026-.508-.058-.994-.118l-1.026-.128A5.464 5.464 0 0 1 2.56 17.57a47.7 47.7 0 0 1 0-10.86l.016-.137a5.58 5.58 0 0 1 4.526-4.849zm1.252 2.238a.75.75 0 0 1-.08 1.058a.8.8 0 0 0-.185.24a.5.5 0 0 0-.054.191c0 .14.102.443.776.75c.649.297 1.657.5 2.974.5s2.325-.203 2.974-.5c.674-.307.776-.61.776-.75c0-.03-.014-.149-.239-.342a.75.75 0 0 1 .978-1.138c.416.358.761.857.761 1.48c0 1.014-.767 1.711-1.653 2.115c-.91.416-2.153.635-3.597.635s-2.686-.22-3.597-.635c-.886-.404-1.653-1.1-1.653-2.115c0-.569.294-1.167.761-1.568a.75.75 0 0 1 1.058.08" clip-rule="evenodd"/></svg> </template>
CSS
.icon-smart-speaker {
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%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M16.407%203.158a24%2024%200%200%200-8.815%200l-.215.04a4.08%204.08%200%200%200-3.31%203.546l-.017.137a46%2046%200%200%200-.273%206.84c.595.463%201.816%201.234%204.143%201.68c.321-.805.776-1.458%201.421-1.918c.738-.524%201.637-.733%202.659-.733s1.921.209%202.659.733c.646.46%201.1%201.114%201.422%201.92a12.4%2012.4%200%200%200%202.195-.616c.98-.384%201.582-.803%201.944-1.101a46%2046%200%200%200-.287-7.05a3.95%203.95%200%200%200-3.203-3.417zm3.707%2012.413a10%2010%200%200%201-1.291.613C17.325%2016.77%2015.15%2017.25%2012%2017.25c-4.221%200-6.697-.874-8.122-1.671q.069.91.172%201.82a3.964%203.964%200%200%200%203.453%203.477l1.015.127c.498.062.737.092.975.116c1.667.175%203.347.175%205.014%200c.238-.024.476-.054.974-.116l.906-.113a4.09%204.09%200%200%200%203.562-3.6l.018-.153q.087-.782.147-1.566m-5.575.056c-.214-.426-.465-.72-.75-.921c-.405-.288-.965-.456-1.789-.456s-1.384.168-1.79.456c-.283.202-.535.494-.749.92c.755.079%201.598.124%202.539.124c.944%200%201.787-.045%202.54-.123M7.317%201.684a25.5%2025.5%200%200%201%209.366%200l.323.06a5.45%205.45%200%200%201%204.416%204.716c.425%203.601.437%207.24.035%2010.843l-.017.154a5.59%205.59%200%200%201-4.867%204.921l-.917.115c-.485.06-.74.092-.994.118c-1.77.185-3.555.185-5.325%200c-.254-.026-.508-.058-.994-.118l-1.026-.128A5.464%205.464%200%200%201%202.56%2017.57a47.7%2047.7%200%200%201%200-10.86l.016-.137a5.58%205.58%200%200%201%204.526-4.849zm1.252%202.238a.75.75%200%200%201-.08%201.058a.8.8%200%200%200-.185.24a.5.5%200%200%200-.054.191c0%20.14.102.443.776.75c.649.297%201.657.5%202.974.5s2.325-.203%202.974-.5c.674-.307.776-.61.776-.75c0-.03-.014-.149-.239-.342a.75.75%200%200%201%20.978-1.138c.416.358.761.857.761%201.48c0%201.014-.767%201.711-1.653%202.115c-.91.416-2.153.635-3.597.635s-2.686-.22-3.597-.635c-.886-.404-1.653-1.1-1.653-2.115c0-.569.294-1.167.761-1.568a.75.75%200%200%201%201.058.08%22%20clip-rule%3D%22evenodd%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M16.407%203.158a24%2024%200%200%200-8.815%200l-.215.04a4.08%204.08%200%200%200-3.31%203.546l-.017.137a46%2046%200%200%200-.273%206.84c.595.463%201.816%201.234%204.143%201.68c.321-.805.776-1.458%201.421-1.918c.738-.524%201.637-.733%202.659-.733s1.921.209%202.659.733c.646.46%201.1%201.114%201.422%201.92a12.4%2012.4%200%200%200%202.195-.616c.98-.384%201.582-.803%201.944-1.101a46%2046%200%200%200-.287-7.05a3.95%203.95%200%200%200-3.203-3.417zm3.707%2012.413a10%2010%200%200%201-1.291.613C17.325%2016.77%2015.15%2017.25%2012%2017.25c-4.221%200-6.697-.874-8.122-1.671q.069.91.172%201.82a3.964%203.964%200%200%200%203.453%203.477l1.015.127c.498.062.737.092.975.116c1.667.175%203.347.175%205.014%200c.238-.024.476-.054.974-.116l.906-.113a4.09%204.09%200%200%200%203.562-3.6l.018-.153q.087-.782.147-1.566m-5.575.056c-.214-.426-.465-.72-.75-.921c-.405-.288-.965-.456-1.789-.456s-1.384.168-1.79.456c-.283.202-.535.494-.749.92c.755.079%201.598.124%202.539.124c.944%200%201.787-.045%202.54-.123M7.317%201.684a25.5%2025.5%200%200%201%209.366%200l.323.06a5.45%205.45%200%200%201%204.416%204.716c.425%203.601.437%207.24.035%2010.843l-.017.154a5.59%205.59%200%200%201-4.867%204.921l-.917.115c-.485.06-.74.092-.994.118c-1.77.185-3.555.185-5.325%200c-.254-.026-.508-.058-.994-.118l-1.026-.128A5.464%205.464%200%200%201%202.56%2017.57a47.7%2047.7%200%200%201%200-10.86l.016-.137a5.58%205.58%200%200%201%204.526-4.849zm1.252%202.238a.75.75%200%200%201-.08%201.058a.8.8%200%200%200-.185.24a.5.5%200%200%200-.054.191c0%20.14.102.443.776.75c.649.297%201.657.5%202.974.5s2.325-.203%202.974-.5c.674-.307.776-.61.776-.75c0-.03-.014-.149-.239-.342a.75.75%200%200%201%20.978-1.138c.416.358.761.857.761%201.48c0%201.014-.767%201.711-1.653%202.115c-.91.416-2.153.635-3.597.635s-2.686-.22-3.597-.635c-.886-.404-1.653-1.1-1.653-2.115c0-.569.294-1.167.761-1.568a.75.75%200%200%201%201.058.08%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/smart-speaker.svg?color=%231a73e8&size=48