lightbulb filament icon
lightbulb-filament-48-regular from Fluent UI System Icons by Microsoft Corporation · 48 Regular · MIT Free for personal and commercial use.
- Name
- lightbulb-filament-48-regular
- Set
- Fluent UI System Icons
- Style
- 48 Regular
- Viewbox
- 48×48
- License
- MIT
9 other variants in Fluent UI System Icons
The same icon in other sets
Related icons in Fluent UI System Icons
Use the lightbulb filament icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M24 6.5c-6.627 0-12 5.373-12 12c0 3.508 1.504 6.663 3.905 8.859c.717.655 1.338 1.522 1.608 2.577L18.68 34.5h4.07v-13a1.25 1.25 0 0 1 2.5 0v13h4.071l1.17-4.568c.27-1.054.89-1.92 1.606-2.575A11.97 11.97 0 0 0 36 18.5c0-6.627-5.373-12-12-12m-3.962 33.308a2.25 2.25 0 0 0 2.18 1.692h3.565a2.25 2.25 0 0 0 2.18-1.692L28.68 37h-9.36zM9.5 18.5C9.5 10.492 15.992 4 24 4s14.5 6.492 14.5 14.5c0 4.237-1.82 8.052-4.715 10.701c-.45.412-.75.875-.873 1.351l-2.527 9.876A4.75 4.75 0 0 1 25.783 44h-3.565a4.75 4.75 0 0 1-4.602-3.573l-2.525-9.871c-.122-.477-.423-.94-.873-1.352A14.47 14.47 0 0 1 9.5 18.5m15.75-6.25a1.25 1.25 0 1 0-2.5 0v3.5a1.25 1.25 0 1 0 2.5 0zm7.382 3.116a1.25 1.25 0 0 1 0 1.767l-2.497 2.497a1.25 1.25 0 0 1-1.769-1.768l2.498-2.496a1.25 1.25 0 0 1 1.768 0m-13 2.496a1.25 1.25 0 1 1-1.768 1.768l-2.498-2.497a1.25 1.25 0 1 1 1.768-1.767z"/></svg>
React
import type { SVGProps } from "react";
export function FluentLightbulbFilament48Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M24 6.5c-6.627 0-12 5.373-12 12c0 3.508 1.504 6.663 3.905 8.859c.717.655 1.338 1.522 1.608 2.577L18.68 34.5h4.07v-13a1.25 1.25 0 0 1 2.5 0v13h4.071l1.17-4.568c.27-1.054.89-1.92 1.606-2.575A11.97 11.97 0 0 0 36 18.5c0-6.627-5.373-12-12-12m-3.962 33.308a2.25 2.25 0 0 0 2.18 1.692h3.565a2.25 2.25 0 0 0 2.18-1.692L28.68 37h-9.36zM9.5 18.5C9.5 10.492 15.992 4 24 4s14.5 6.492 14.5 14.5c0 4.237-1.82 8.052-4.715 10.701c-.45.412-.75.875-.873 1.351l-2.527 9.876A4.75 4.75 0 0 1 25.783 44h-3.565a4.75 4.75 0 0 1-4.602-3.573l-2.525-9.871c-.122-.477-.423-.94-.873-1.352A14.47 14.47 0 0 1 9.5 18.5m15.75-6.25a1.25 1.25 0 1 0-2.5 0v3.5a1.25 1.25 0 1 0 2.5 0zm7.382 3.116a1.25 1.25 0 0 1 0 1.767l-2.497 2.497a1.25 1.25 0 0 1-1.769-1.768l2.498-2.496a1.25 1.25 0 0 1 1.768 0m-13 2.496a1.25 1.25 0 1 1-1.768 1.768l-2.498-2.497a1.25 1.25 0 1 1 1.768-1.767z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M24 6.5c-6.627 0-12 5.373-12 12c0 3.508 1.504 6.663 3.905 8.859c.717.655 1.338 1.522 1.608 2.577L18.68 34.5h4.07v-13a1.25 1.25 0 0 1 2.5 0v13h4.071l1.17-4.568c.27-1.054.89-1.92 1.606-2.575A11.97 11.97 0 0 0 36 18.5c0-6.627-5.373-12-12-12m-3.962 33.308a2.25 2.25 0 0 0 2.18 1.692h3.565a2.25 2.25 0 0 0 2.18-1.692L28.68 37h-9.36zM9.5 18.5C9.5 10.492 15.992 4 24 4s14.5 6.492 14.5 14.5c0 4.237-1.82 8.052-4.715 10.701c-.45.412-.75.875-.873 1.351l-2.527 9.876A4.75 4.75 0 0 1 25.783 44h-3.565a4.75 4.75 0 0 1-4.602-3.573l-2.525-9.871c-.122-.477-.423-.94-.873-1.352A14.47 14.47 0 0 1 9.5 18.5m15.75-6.25a1.25 1.25 0 1 0-2.5 0v3.5a1.25 1.25 0 1 0 2.5 0zm7.382 3.116a1.25 1.25 0 0 1 0 1.767l-2.497 2.497a1.25 1.25 0 0 1-1.769-1.768l2.498-2.496a1.25 1.25 0 0 1 1.768 0m-13 2.496a1.25 1.25 0 1 1-1.768 1.768l-2.498-2.497a1.25 1.25 0 1 1 1.768-1.767z"/></svg> </template>
CSS
.icon-lightbulb-filament-48-regular {
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%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24%206.5c-6.627%200-12%205.373-12%2012c0%203.508%201.504%206.663%203.905%208.859c.717.655%201.338%201.522%201.608%202.577L18.68%2034.5h4.07v-13a1.25%201.25%200%200%201%202.5%200v13h4.071l1.17-4.568c.27-1.054.89-1.92%201.606-2.575A11.97%2011.97%200%200%200%2036%2018.5c0-6.627-5.373-12-12-12m-3.962%2033.308a2.25%202.25%200%200%200%202.18%201.692h3.565a2.25%202.25%200%200%200%202.18-1.692L28.68%2037h-9.36zM9.5%2018.5C9.5%2010.492%2015.992%204%2024%204s14.5%206.492%2014.5%2014.5c0%204.237-1.82%208.052-4.715%2010.701c-.45.412-.75.875-.873%201.351l-2.527%209.876A4.75%204.75%200%200%201%2025.783%2044h-3.565a4.75%204.75%200%200%201-4.602-3.573l-2.525-9.871c-.122-.477-.423-.94-.873-1.352A14.47%2014.47%200%200%201%209.5%2018.5m15.75-6.25a1.25%201.25%200%201%200-2.5%200v3.5a1.25%201.25%200%201%200%202.5%200zm7.382%203.116a1.25%201.25%200%200%201%200%201.767l-2.497%202.497a1.25%201.25%200%200%201-1.769-1.768l2.498-2.496a1.25%201.25%200%200%201%201.768%200m-13%202.496a1.25%201.25%200%201%201-1.768%201.768l-2.498-2.497a1.25%201.25%200%201%201%201.768-1.767z%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%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M24%206.5c-6.627%200-12%205.373-12%2012c0%203.508%201.504%206.663%203.905%208.859c.717.655%201.338%201.522%201.608%202.577L18.68%2034.5h4.07v-13a1.25%201.25%200%200%201%202.5%200v13h4.071l1.17-4.568c.27-1.054.89-1.92%201.606-2.575A11.97%2011.97%200%200%200%2036%2018.5c0-6.627-5.373-12-12-12m-3.962%2033.308a2.25%202.25%200%200%200%202.18%201.692h3.565a2.25%202.25%200%200%200%202.18-1.692L28.68%2037h-9.36zM9.5%2018.5C9.5%2010.492%2015.992%204%2024%204s14.5%206.492%2014.5%2014.5c0%204.237-1.82%208.052-4.715%2010.701c-.45.412-.75.875-.873%201.351l-2.527%209.876A4.75%204.75%200%200%201%2025.783%2044h-3.565a4.75%204.75%200%200%201-4.602-3.573l-2.525-9.871c-.122-.477-.423-.94-.873-1.352A14.47%2014.47%200%200%201%209.5%2018.5m15.75-6.25a1.25%201.25%200%201%200-2.5%200v3.5a1.25%201.25%200%201%200%202.5%200zm7.382%203.116a1.25%201.25%200%200%201%200%201.767l-2.497%202.497a1.25%201.25%200%200%201-1.769-1.768l2.498-2.496a1.25%201.25%200%200%201%201.768%200m-13%202.496a1.25%201.25%200%201%201-1.768%201.768l-2.498-2.497a1.25%201.25%200%201%201%201.768-1.767z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/lightbulb-filament-48-regular.svg?color=%231a73e8&size=48