light bulb off icon
light-bulb-off-fill from Mage Icons by MageIcons · Fill · Apache-2.0 Free for personal and commercial use.
- Name
- light-bulb-off-fill
- Set
- Mage Icons
- Style
- Fill
- Viewbox
- 24×24
- License
- Apache 2.0
1 other variant in Mage Icons
The same icon in other sets
Related icons in Mage Icons
Use the light bulb off icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.657 7.843a8.17 8.17 0 0 0-4.293-5.023a8.17 8.17 0 0 0-6.585-.242a8.1 8.1 0 0 0-2.815 1.86a8.35 8.35 0 0 0-2.473 7.143v.703c0 .804 0 .834-.915 1.638l-.14.13a2.07 2.07 0 0 0-.643 1.487q-.002.235.06.462l-1.237 1.246a1.7 1.7 0 0 0-.242 2.371l2.091 2.01A1.3 1.3 0 0 0 5.41 22a2.13 2.13 0 0 0 1.428-.633l1.136-1.206q.243.06.493.06a2 2 0 0 0 1.488-.643l.301-.331c.634-.704.644-.714 1.448-.714h.673a8.32 8.32 0 0 0 6.143-1.597l.11-.07a8.2 8.2 0 0 0 3.308-5.707a8 8 0 0 0-.281-3.316M5.802 20.312a.73.73 0 0 1-.311.19l-2.01-1.878a.65.65 0 0 1 .18-.292l1.005-1.004l2.011 2.01zM16.66 7.25a1.006 1.006 0 0 1-1.417 0a2.2 2.2 0 0 0-.684-.462a2.17 2.17 0 0 0-1.629 0c-.254.11-.486.267-.683.462a1.006 1.006 0 0 1-1.428-1.416c.38-.389.835-.697 1.337-.905a4.2 4.2 0 0 1 3.167 0c.505.209.963.516 1.347.905a1.005 1.005 0 0 1-.01 1.376z"/></svg>
React
import type { SVGProps } from "react";
export function MageLightBulbOffFill(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" d="M21.657 7.843a8.17 8.17 0 0 0-4.293-5.023a8.17 8.17 0 0 0-6.585-.242a8.1 8.1 0 0 0-2.815 1.86a8.35 8.35 0 0 0-2.473 7.143v.703c0 .804 0 .834-.915 1.638l-.14.13a2.07 2.07 0 0 0-.643 1.487q-.002.235.06.462l-1.237 1.246a1.7 1.7 0 0 0-.242 2.371l2.091 2.01A1.3 1.3 0 0 0 5.41 22a2.13 2.13 0 0 0 1.428-.633l1.136-1.206q.243.06.493.06a2 2 0 0 0 1.488-.643l.301-.331c.634-.704.644-.714 1.448-.714h.673a8.32 8.32 0 0 0 6.143-1.597l.11-.07a8.2 8.2 0 0 0 3.308-5.707a8 8 0 0 0-.281-3.316M5.802 20.312a.73.73 0 0 1-.311.19l-2.01-1.878a.65.65 0 0 1 .18-.292l1.005-1.004l2.011 2.01zM16.66 7.25a1.006 1.006 0 0 1-1.417 0a2.2 2.2 0 0 0-.684-.462a2.17 2.17 0 0 0-1.629 0c-.254.11-.486.267-.683.462a1.006 1.006 0 0 1-1.428-1.416c.38-.389.835-.697 1.337-.905a4.2 4.2 0 0 1 3.167 0c.505.209.963.516 1.347.905a1.005 1.005 0 0 1-.01 1.376z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.657 7.843a8.17 8.17 0 0 0-4.293-5.023a8.17 8.17 0 0 0-6.585-.242a8.1 8.1 0 0 0-2.815 1.86a8.35 8.35 0 0 0-2.473 7.143v.703c0 .804 0 .834-.915 1.638l-.14.13a2.07 2.07 0 0 0-.643 1.487q-.002.235.06.462l-1.237 1.246a1.7 1.7 0 0 0-.242 2.371l2.091 2.01A1.3 1.3 0 0 0 5.41 22a2.13 2.13 0 0 0 1.428-.633l1.136-1.206q.243.06.493.06a2 2 0 0 0 1.488-.643l.301-.331c.634-.704.644-.714 1.448-.714h.673a8.32 8.32 0 0 0 6.143-1.597l.11-.07a8.2 8.2 0 0 0 3.308-5.707a8 8 0 0 0-.281-3.316M5.802 20.312a.73.73 0 0 1-.311.19l-2.01-1.878a.65.65 0 0 1 .18-.292l1.005-1.004l2.011 2.01zM16.66 7.25a1.006 1.006 0 0 1-1.417 0a2.2 2.2 0 0 0-.684-.462a2.17 2.17 0 0 0-1.629 0c-.254.11-.486.267-.683.462a1.006 1.006 0 0 1-1.428-1.416c.38-.389.835-.697 1.337-.905a4.2 4.2 0 0 1 3.167 0c.505.209.963.516 1.347.905a1.005 1.005 0 0 1-.01 1.376z"/></svg> </template>
CSS
.icon-light-bulb-off-fill {
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%20d%3D%22M21.657%207.843a8.17%208.17%200%200%200-4.293-5.023a8.17%208.17%200%200%200-6.585-.242a8.1%208.1%200%200%200-2.815%201.86a8.35%208.35%200%200%200-2.473%207.143v.703c0%20.804%200%20.834-.915%201.638l-.14.13a2.07%202.07%200%200%200-.643%201.487q-.002.235.06.462l-1.237%201.246a1.7%201.7%200%200%200-.242%202.371l2.091%202.01A1.3%201.3%200%200%200%205.41%2022a2.13%202.13%200%200%200%201.428-.633l1.136-1.206q.243.06.493.06a2%202%200%200%200%201.488-.643l.301-.331c.634-.704.644-.714%201.448-.714h.673a8.32%208.32%200%200%200%206.143-1.597l.11-.07a8.2%208.2%200%200%200%203.308-5.707a8%208%200%200%200-.281-3.316M5.802%2020.312a.73.73%200%200%201-.311.19l-2.01-1.878a.65.65%200%200%201%20.18-.292l1.005-1.004l2.011%202.01zM16.66%207.25a1.006%201.006%200%200%201-1.417%200a2.2%202.2%200%200%200-.684-.462a2.17%202.17%200%200%200-1.629%200c-.254.11-.486.267-.683.462a1.006%201.006%200%200%201-1.428-1.416c.38-.389.835-.697%201.337-.905a4.2%204.2%200%200%201%203.167%200c.505.209.963.516%201.347.905a1.005%201.005%200%200%201-.01%201.376z%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%20d%3D%22M21.657%207.843a8.17%208.17%200%200%200-4.293-5.023a8.17%208.17%200%200%200-6.585-.242a8.1%208.1%200%200%200-2.815%201.86a8.35%208.35%200%200%200-2.473%207.143v.703c0%20.804%200%20.834-.915%201.638l-.14.13a2.07%202.07%200%200%200-.643%201.487q-.002.235.06.462l-1.237%201.246a1.7%201.7%200%200%200-.242%202.371l2.091%202.01A1.3%201.3%200%200%200%205.41%2022a2.13%202.13%200%200%200%201.428-.633l1.136-1.206q.243.06.493.06a2%202%200%200%200%201.488-.643l.301-.331c.634-.704.644-.714%201.448-.714h.673a8.32%208.32%200%200%200%206.143-1.597l.11-.07a8.2%208.2%200%200%200%203.308-5.707a8%208%200%200%200-.281-3.316M5.802%2020.312a.73.73%200%200%201-.311.19l-2.01-1.878a.65.65%200%200%201%20.18-.292l1.005-1.004l2.011%202.01zM16.66%207.25a1.006%201.006%200%200%201-1.417%200a2.2%202.2%200%200%200-.684-.462a2.17%202.17%200%200%200-1.629%200c-.254.11-.486.267-.683.462a1.006%201.006%200%200%201-1.428-1.416c.38-.389.835-.697%201.337-.905a4.2%204.2%200%200%201%203.167%200c.505.209.963.516%201.347.905a1.005%201.005%200%200%201-.01%201.376z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mage/light-bulb-off-fill.svg?color=%231a73e8&size=48