bulb from Reicon by REICON · Outline · Devices · MIT Free for personal and commercial use.

Name
bulb
Set
Reicon
Style
Outline
Category
Devices
Viewbox
24×24
License
MIT

1 other variant in Reicon

The same icon in other sets

All bulb icons →

More devices icons from Reicon

Use the bulb 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="M12 2.75a6.75 6.75 0 0 0-4.5 11.78l.003.004c.557.499.98.877 1.282 1.155c.285.26.51.474.629.62l.012.015c.222.273.414.511.542.796c.127.284.175.587.231.934l.003.02c.029.178.04.396.045.676h3.506c.005-.28.016-.498.045-.676l.003-.02c.056-.347.104-.65.231-.934c.128-.285.32-.523.542-.796l.012-.015c.119-.146.344-.36.629-.62c.302-.278.725-.656 1.282-1.155l.004-.004A6.75 6.75 0 0 0 12 2.75m1.744 17.5h-3.488q.006.155.016.277c.02.225.055.307.079.348a.75.75 0 0 0 .274.274c.04.024.123.058.348.079c.235.021.546.022 1.027.022s.792 0 1.027-.022c.225-.02.307-.055.348-.079a.75.75 0 0 0 .274-.274c.024-.04.059-.123.079-.348q.01-.122.016-.277M3.75 9.5a8.25 8.25 0 1 1 13.752 6.148a169 169 0 0 0-1.274 1.146a16 16 0 0 0-.44.42l-.036.039c-.26.321-.317.404-.35.479c-.034.075-.058.172-.123.58c-.026.161-.029.437-.029 1.188v.032c0 .44 0 .82-.028 1.13c-.03.33-.096.656-.273.963a2.25 2.25 0 0 1-.824.824c-.307.177-.633.243-.962.273c-.312.028-.691.028-1.13.028h-.065c-.44 0-.82 0-1.13-.028c-.33-.03-.656-.096-.963-.273a2.25 2.25 0 0 1-.824-.824c-.177-.307-.243-.633-.273-.962c-.028-.312-.028-.691-.028-1.13V19.5c0-.75-.003-1.027-.029-1.188c-.065-.408-.09-.505-.123-.58s-.09-.158-.35-.48l-.01-.01l-.026-.029l-.097-.097a17 17 0 0 0-.343-.322c-.295-.27-.712-.643-1.274-1.146A8.23 8.23 0 0 1 3.75 9.5m6.142 3.85a.75.75 0 0 1 1.025.274a1.25 1.25 0 0 0 2.166 0a.75.75 0 1 1 1.299.752a2.76 2.76 0 0 1-1.632 1.27V17a.75.75 0 0 1-1.5 0v-1.354a2.76 2.76 0 0 1-1.632-1.27a.75.75 0 0 1 .274-1.025" clip-rule="evenodd"/></svg>

React

import type { SVGProps } from "react";

export function ReiconBulb(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="M12 2.75a6.75 6.75 0 0 0-4.5 11.78l.003.004c.557.499.98.877 1.282 1.155c.285.26.51.474.629.62l.012.015c.222.273.414.511.542.796c.127.284.175.587.231.934l.003.02c.029.178.04.396.045.676h3.506c.005-.28.016-.498.045-.676l.003-.02c.056-.347.104-.65.231-.934c.128-.285.32-.523.542-.796l.012-.015c.119-.146.344-.36.629-.62c.302-.278.725-.656 1.282-1.155l.004-.004A6.75 6.75 0 0 0 12 2.75m1.744 17.5h-3.488q.006.155.016.277c.02.225.055.307.079.348a.75.75 0 0 0 .274.274c.04.024.123.058.348.079c.235.021.546.022 1.027.022s.792 0 1.027-.022c.225-.02.307-.055.348-.079a.75.75 0 0 0 .274-.274c.024-.04.059-.123.079-.348q.01-.122.016-.277M3.75 9.5a8.25 8.25 0 1 1 13.752 6.148a169 169 0 0 0-1.274 1.146a16 16 0 0 0-.44.42l-.036.039c-.26.321-.317.404-.35.479c-.034.075-.058.172-.123.58c-.026.161-.029.437-.029 1.188v.032c0 .44 0 .82-.028 1.13c-.03.33-.096.656-.273.963a2.25 2.25 0 0 1-.824.824c-.307.177-.633.243-.962.273c-.312.028-.691.028-1.13.028h-.065c-.44 0-.82 0-1.13-.028c-.33-.03-.656-.096-.963-.273a2.25 2.25 0 0 1-.824-.824c-.177-.307-.243-.633-.273-.962c-.028-.312-.028-.691-.028-1.13V19.5c0-.75-.003-1.027-.029-1.188c-.065-.408-.09-.505-.123-.58s-.09-.158-.35-.48l-.01-.01l-.026-.029l-.097-.097a17 17 0 0 0-.343-.322c-.295-.27-.712-.643-1.274-1.146A8.23 8.23 0 0 1 3.75 9.5m6.142 3.85a.75.75 0 0 1 1.025.274a1.25 1.25 0 0 0 2.166 0a.75.75 0 1 1 1.299.752a2.76 2.76 0 0 1-1.632 1.27V17a.75.75 0 0 1-1.5 0v-1.354a2.76 2.76 0 0 1-1.632-1.27a.75.75 0 0 1 .274-1.025" 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="M12 2.75a6.75 6.75 0 0 0-4.5 11.78l.003.004c.557.499.98.877 1.282 1.155c.285.26.51.474.629.62l.012.015c.222.273.414.511.542.796c.127.284.175.587.231.934l.003.02c.029.178.04.396.045.676h3.506c.005-.28.016-.498.045-.676l.003-.02c.056-.347.104-.65.231-.934c.128-.285.32-.523.542-.796l.012-.015c.119-.146.344-.36.629-.62c.302-.278.725-.656 1.282-1.155l.004-.004A6.75 6.75 0 0 0 12 2.75m1.744 17.5h-3.488q.006.155.016.277c.02.225.055.307.079.348a.75.75 0 0 0 .274.274c.04.024.123.058.348.079c.235.021.546.022 1.027.022s.792 0 1.027-.022c.225-.02.307-.055.348-.079a.75.75 0 0 0 .274-.274c.024-.04.059-.123.079-.348q.01-.122.016-.277M3.75 9.5a8.25 8.25 0 1 1 13.752 6.148a169 169 0 0 0-1.274 1.146a16 16 0 0 0-.44.42l-.036.039c-.26.321-.317.404-.35.479c-.034.075-.058.172-.123.58c-.026.161-.029.437-.029 1.188v.032c0 .44 0 .82-.028 1.13c-.03.33-.096.656-.273.963a2.25 2.25 0 0 1-.824.824c-.307.177-.633.243-.962.273c-.312.028-.691.028-1.13.028h-.065c-.44 0-.82 0-1.13-.028c-.33-.03-.656-.096-.963-.273a2.25 2.25 0 0 1-.824-.824c-.177-.307-.243-.633-.273-.962c-.028-.312-.028-.691-.028-1.13V19.5c0-.75-.003-1.027-.029-1.188c-.065-.408-.09-.505-.123-.58s-.09-.158-.35-.48l-.01-.01l-.026-.029l-.097-.097a17 17 0 0 0-.343-.322c-.295-.27-.712-.643-1.274-1.146A8.23 8.23 0 0 1 3.75 9.5m6.142 3.85a.75.75 0 0 1 1.025.274a1.25 1.25 0 0 0 2.166 0a.75.75 0 1 1 1.299.752a2.76 2.76 0 0 1-1.632 1.27V17a.75.75 0 0 1-1.5 0v-1.354a2.76 2.76 0 0 1-1.632-1.27a.75.75 0 0 1 .274-1.025" clip-rule="evenodd"/></svg>
</template>

CSS

.icon-bulb {
  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%22M12%202.75a6.75%206.75%200%200%200-4.5%2011.78l.003.004c.557.499.98.877%201.282%201.155c.285.26.51.474.629.62l.012.015c.222.273.414.511.542.796c.127.284.175.587.231.934l.003.02c.029.178.04.396.045.676h3.506c.005-.28.016-.498.045-.676l.003-.02c.056-.347.104-.65.231-.934c.128-.285.32-.523.542-.796l.012-.015c.119-.146.344-.36.629-.62c.302-.278.725-.656%201.282-1.155l.004-.004A6.75%206.75%200%200%200%2012%202.75m1.744%2017.5h-3.488q.006.155.016.277c.02.225.055.307.079.348a.75.75%200%200%200%20.274.274c.04.024.123.058.348.079c.235.021.546.022%201.027.022s.792%200%201.027-.022c.225-.02.307-.055.348-.079a.75.75%200%200%200%20.274-.274c.024-.04.059-.123.079-.348q.01-.122.016-.277M3.75%209.5a8.25%208.25%200%201%201%2013.752%206.148a169%20169%200%200%200-1.274%201.146a16%2016%200%200%200-.44.42l-.036.039c-.26.321-.317.404-.35.479c-.034.075-.058.172-.123.58c-.026.161-.029.437-.029%201.188v.032c0%20.44%200%20.82-.028%201.13c-.03.33-.096.656-.273.963a2.25%202.25%200%200%201-.824.824c-.307.177-.633.243-.962.273c-.312.028-.691.028-1.13.028h-.065c-.44%200-.82%200-1.13-.028c-.33-.03-.656-.096-.963-.273a2.25%202.25%200%200%201-.824-.824c-.177-.307-.243-.633-.273-.962c-.028-.312-.028-.691-.028-1.13V19.5c0-.75-.003-1.027-.029-1.188c-.065-.408-.09-.505-.123-.58s-.09-.158-.35-.48l-.01-.01l-.026-.029l-.097-.097a17%2017%200%200%200-.343-.322c-.295-.27-.712-.643-1.274-1.146A8.23%208.23%200%200%201%203.75%209.5m6.142%203.85a.75.75%200%200%201%201.025.274a1.25%201.25%200%200%200%202.166%200a.75.75%200%201%201%201.299.752a2.76%202.76%200%200%201-1.632%201.27V17a.75.75%200%200%201-1.5%200v-1.354a2.76%202.76%200%200%201-1.632-1.27a.75.75%200%200%201%20.274-1.025%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%22M12%202.75a6.75%206.75%200%200%200-4.5%2011.78l.003.004c.557.499.98.877%201.282%201.155c.285.26.51.474.629.62l.012.015c.222.273.414.511.542.796c.127.284.175.587.231.934l.003.02c.029.178.04.396.045.676h3.506c.005-.28.016-.498.045-.676l.003-.02c.056-.347.104-.65.231-.934c.128-.285.32-.523.542-.796l.012-.015c.119-.146.344-.36.629-.62c.302-.278.725-.656%201.282-1.155l.004-.004A6.75%206.75%200%200%200%2012%202.75m1.744%2017.5h-3.488q.006.155.016.277c.02.225.055.307.079.348a.75.75%200%200%200%20.274.274c.04.024.123.058.348.079c.235.021.546.022%201.027.022s.792%200%201.027-.022c.225-.02.307-.055.348-.079a.75.75%200%200%200%20.274-.274c.024-.04.059-.123.079-.348q.01-.122.016-.277M3.75%209.5a8.25%208.25%200%201%201%2013.752%206.148a169%20169%200%200%200-1.274%201.146a16%2016%200%200%200-.44.42l-.036.039c-.26.321-.317.404-.35.479c-.034.075-.058.172-.123.58c-.026.161-.029.437-.029%201.188v.032c0%20.44%200%20.82-.028%201.13c-.03.33-.096.656-.273.963a2.25%202.25%200%200%201-.824.824c-.307.177-.633.243-.962.273c-.312.028-.691.028-1.13.028h-.065c-.44%200-.82%200-1.13-.028c-.33-.03-.656-.096-.963-.273a2.25%202.25%200%200%201-.824-.824c-.177-.307-.243-.633-.273-.962c-.028-.312-.028-.691-.028-1.13V19.5c0-.75-.003-1.027-.029-1.188c-.065-.408-.09-.505-.123-.58s-.09-.158-.35-.48l-.01-.01l-.026-.029l-.097-.097a17%2017%200%200%200-.343-.322c-.295-.27-.712-.643-1.274-1.146A8.23%208.23%200%200%201%203.75%209.5m6.142%203.85a.75.75%200%200%201%201.025.274a1.25%201.25%200%200%200%202.166%200a.75.75%200%201%201%201.299.752a2.76%202.76%200%200%201-1.632%201.27V17a.75.75%200%200%201-1.5%200v-1.354a2.76%202.76%200%200%201-1.632-1.27a.75.75%200%200%201%20.274-1.025%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/bulb.svg?color=%231a73e8&size=48