lightbulb sparkle icon

lightbulb-sparkle-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.

Name
lightbulb-sparkle-20-filled
Set
Fluent UI System Icons
Style
20 Filled
Viewbox
20×20
License
MIT

5 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the lightbulb sparkle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M12.69 16.606c-.185.77-.866 1.33-1.671 1.39l-.144.004h-1.75c-.819 0-1.535-.517-1.776-1.262l-.037-.133L6.928 15h6.145zM8.95 2.153a1.41 1.41 0 0 0-.951 1.342c0 .3.09.581.26.821s.41.431.71.532l1.062.35c.15.05.29.13.47.29c.11.11.2.24.291.471l.36 1.092c.09.25.25.48.52.691q.21.15.451.21c-.08.17-.12.36-.12.55c0 .271.08.533.24.753s.38.38.65.48l.761.25c.08.03.16.08.22.141c.07.06.11.14.14.22l.26.801q.1.247.279.438a9 9 0 0 1-.758.809a.6.6 0 0 0-.145.211l-.026.082L13.31 14H6.69l-.314-1.312a.6.6 0 0 0-.17-.293c-1.39-1.313-2.134-2.771-2.201-4.356l-.002-.43C4.1 4.72 6.385 2.364 9.309 2.04zM15.484 6a.3.3 0 0 1 .286.201l.249.766a1.58 1.58 0 0 0 .999.998l.765.248l.015.004a.303.303 0 0 1 .146.46a.3.3 0 0 1-.146.11l-.765.248a1.58 1.58 0 0 0-.999.998l-.249.766a.302.302 0 0 1-.57 0l-.25-.766a1.58 1.58 0 0 0-.998-1.002l-.765-.248a.303.303 0 0 1-.146-.46a.3.3 0 0 1 .146-.11l.765-.248a1.58 1.58 0 0 0 .984-.998L15.2 6.2a.3.3 0 0 1 .284-.2M12.48 0a.42.42 0 0 1 .399.282l.348 1.072a2.2 2.2 0 0 0 1.398 1.396l1.072.349l.022.005a.424.424 0 0 1 0 .797l-1.072.349a2.21 2.21 0 0 0-1.399 1.396L12.9 6.718a.423.423 0 0 1-.643.204l-.02-.015a.43.43 0 0 1-.135-.19l-.348-1.07a2.22 2.22 0 0 0-1.399-1.403l-1.072-.348a.423.423 0 0 1 0-.797l1.072-.349a2.21 2.21 0 0 0 1.377-1.396L12.08.282a.42.42 0 0 1 .4-.282"/></svg>

React

import type { SVGProps } from "react";

export function FluentLightbulbSparkle20Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M12.69 16.606c-.185.77-.866 1.33-1.671 1.39l-.144.004h-1.75c-.819 0-1.535-.517-1.776-1.262l-.037-.133L6.928 15h6.145zM8.95 2.153a1.41 1.41 0 0 0-.951 1.342c0 .3.09.581.26.821s.41.431.71.532l1.062.35c.15.05.29.13.47.29c.11.11.2.24.291.471l.36 1.092c.09.25.25.48.52.691q.21.15.451.21c-.08.17-.12.36-.12.55c0 .271.08.533.24.753s.38.38.65.48l.761.25c.08.03.16.08.22.141c.07.06.11.14.14.22l.26.801q.1.247.279.438a9 9 0 0 1-.758.809a.6.6 0 0 0-.145.211l-.026.082L13.31 14H6.69l-.314-1.312a.6.6 0 0 0-.17-.293c-1.39-1.313-2.134-2.771-2.201-4.356l-.002-.43C4.1 4.72 6.385 2.364 9.309 2.04zM15.484 6a.3.3 0 0 1 .286.201l.249.766a1.58 1.58 0 0 0 .999.998l.765.248l.015.004a.303.303 0 0 1 .146.46a.3.3 0 0 1-.146.11l-.765.248a1.58 1.58 0 0 0-.999.998l-.249.766a.302.302 0 0 1-.57 0l-.25-.766a1.58 1.58 0 0 0-.998-1.002l-.765-.248a.303.303 0 0 1-.146-.46a.3.3 0 0 1 .146-.11l.765-.248a1.58 1.58 0 0 0 .984-.998L15.2 6.2a.3.3 0 0 1 .284-.2M12.48 0a.42.42 0 0 1 .399.282l.348 1.072a2.2 2.2 0 0 0 1.398 1.396l1.072.349l.022.005a.424.424 0 0 1 0 .797l-1.072.349a2.21 2.21 0 0 0-1.399 1.396L12.9 6.718a.423.423 0 0 1-.643.204l-.02-.015a.43.43 0 0 1-.135-.19l-.348-1.07a2.22 2.22 0 0 0-1.399-1.403l-1.072-.348a.423.423 0 0 1 0-.797l1.072-.349a2.21 2.21 0 0 0 1.377-1.396L12.08.282a.42.42 0 0 1 .4-.282"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M12.69 16.606c-.185.77-.866 1.33-1.671 1.39l-.144.004h-1.75c-.819 0-1.535-.517-1.776-1.262l-.037-.133L6.928 15h6.145zM8.95 2.153a1.41 1.41 0 0 0-.951 1.342c0 .3.09.581.26.821s.41.431.71.532l1.062.35c.15.05.29.13.47.29c.11.11.2.24.291.471l.36 1.092c.09.25.25.48.52.691q.21.15.451.21c-.08.17-.12.36-.12.55c0 .271.08.533.24.753s.38.38.65.48l.761.25c.08.03.16.08.22.141c.07.06.11.14.14.22l.26.801q.1.247.279.438a9 9 0 0 1-.758.809a.6.6 0 0 0-.145.211l-.026.082L13.31 14H6.69l-.314-1.312a.6.6 0 0 0-.17-.293c-1.39-1.313-2.134-2.771-2.201-4.356l-.002-.43C4.1 4.72 6.385 2.364 9.309 2.04zM15.484 6a.3.3 0 0 1 .286.201l.249.766a1.58 1.58 0 0 0 .999.998l.765.248l.015.004a.303.303 0 0 1 .146.46a.3.3 0 0 1-.146.11l-.765.248a1.58 1.58 0 0 0-.999.998l-.249.766a.302.302 0 0 1-.57 0l-.25-.766a1.58 1.58 0 0 0-.998-1.002l-.765-.248a.303.303 0 0 1-.146-.46a.3.3 0 0 1 .146-.11l.765-.248a1.58 1.58 0 0 0 .984-.998L15.2 6.2a.3.3 0 0 1 .284-.2M12.48 0a.42.42 0 0 1 .399.282l.348 1.072a2.2 2.2 0 0 0 1.398 1.396l1.072.349l.022.005a.424.424 0 0 1 0 .797l-1.072.349a2.21 2.21 0 0 0-1.399 1.396L12.9 6.718a.423.423 0 0 1-.643.204l-.02-.015a.43.43 0 0 1-.135-.19l-.348-1.07a2.22 2.22 0 0 0-1.399-1.403l-1.072-.348a.423.423 0 0 1 0-.797l1.072-.349a2.21 2.21 0 0 0 1.377-1.396L12.08.282a.42.42 0 0 1 .4-.282"/></svg>
</template>

CSS

.icon-lightbulb-sparkle-20-filled {
  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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.69%2016.606c-.185.77-.866%201.33-1.671%201.39l-.144.004h-1.75c-.819%200-1.535-.517-1.776-1.262l-.037-.133L6.928%2015h6.145zM8.95%202.153a1.41%201.41%200%200%200-.951%201.342c0%20.3.09.581.26.821s.41.431.71.532l1.062.35c.15.05.29.13.47.29c.11.11.2.24.291.471l.36%201.092c.09.25.25.48.52.691q.21.15.451.21c-.08.17-.12.36-.12.55c0%20.271.08.533.24.753s.38.38.65.48l.761.25c.08.03.16.08.22.141c.07.06.11.14.14.22l.26.801q.1.247.279.438a9%209%200%200%201-.758.809a.6.6%200%200%200-.145.211l-.026.082L13.31%2014H6.69l-.314-1.312a.6.6%200%200%200-.17-.293c-1.39-1.313-2.134-2.771-2.201-4.356l-.002-.43C4.1%204.72%206.385%202.364%209.309%202.04zM15.484%206a.3.3%200%200%201%20.286.201l.249.766a1.58%201.58%200%200%200%20.999.998l.765.248l.015.004a.303.303%200%200%201%20.146.46a.3.3%200%200%201-.146.11l-.765.248a1.58%201.58%200%200%200-.999.998l-.249.766a.302.302%200%200%201-.57%200l-.25-.766a1.58%201.58%200%200%200-.998-1.002l-.765-.248a.303.303%200%200%201-.146-.46a.3.3%200%200%201%20.146-.11l.765-.248a1.58%201.58%200%200%200%20.984-.998L15.2%206.2a.3.3%200%200%201%20.284-.2M12.48%200a.42.42%200%200%201%20.399.282l.348%201.072a2.2%202.2%200%200%200%201.398%201.396l1.072.349l.022.005a.424.424%200%200%201%200%20.797l-1.072.349a2.21%202.21%200%200%200-1.399%201.396L12.9%206.718a.423.423%200%200%201-.643.204l-.02-.015a.43.43%200%200%201-.135-.19l-.348-1.07a2.22%202.22%200%200%200-1.399-1.403l-1.072-.348a.423.423%200%200%201%200-.797l1.072-.349a2.21%202.21%200%200%200%201.377-1.396L12.08.282a.42.42%200%200%201%20.4-.282%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12.69%2016.606c-.185.77-.866%201.33-1.671%201.39l-.144.004h-1.75c-.819%200-1.535-.517-1.776-1.262l-.037-.133L6.928%2015h6.145zM8.95%202.153a1.41%201.41%200%200%200-.951%201.342c0%20.3.09.581.26.821s.41.431.71.532l1.062.35c.15.05.29.13.47.29c.11.11.2.24.291.471l.36%201.092c.09.25.25.48.52.691q.21.15.451.21c-.08.17-.12.36-.12.55c0%20.271.08.533.24.753s.38.38.65.48l.761.25c.08.03.16.08.22.141c.07.06.11.14.14.22l.26.801q.1.247.279.438a9%209%200%200%201-.758.809a.6.6%200%200%200-.145.211l-.026.082L13.31%2014H6.69l-.314-1.312a.6.6%200%200%200-.17-.293c-1.39-1.313-2.134-2.771-2.201-4.356l-.002-.43C4.1%204.72%206.385%202.364%209.309%202.04zM15.484%206a.3.3%200%200%201%20.286.201l.249.766a1.58%201.58%200%200%200%20.999.998l.765.248l.015.004a.303.303%200%200%201%20.146.46a.3.3%200%200%201-.146.11l-.765.248a1.58%201.58%200%200%200-.999.998l-.249.766a.302.302%200%200%201-.57%200l-.25-.766a1.58%201.58%200%200%200-.998-1.002l-.765-.248a.303.303%200%200%201-.146-.46a.3.3%200%200%201%20.146-.11l.765-.248a1.58%201.58%200%200%200%20.984-.998L15.2%206.2a.3.3%200%200%201%20.284-.2M12.48%200a.42.42%200%200%201%20.399.282l.348%201.072a2.2%202.2%200%200%200%201.398%201.396l1.072.349l.022.005a.424.424%200%200%201%200%20.797l-1.072.349a2.21%202.21%200%200%200-1.399%201.396L12.9%206.718a.423.423%200%200%201-.643.204l-.02-.015a.43.43%200%200%201-.135-.19l-.348-1.07a2.22%202.22%200%200%200-1.399-1.403l-1.072-.348a.423.423%200%200%201%200-.797l1.072-.349a2.21%202.21%200%200%200%201.377-1.396L12.08.282a.42.42%200%200%201%20.4-.282%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/lightbulb-sparkle-20-filled.svg?color=%231a73e8&size=48