44 lines
819 B
XML
44 lines
819 B
XML
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
>
|
|
<style>
|
|
.outline {
|
|
fill: none;
|
|
stroke: #000000;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
</style>
|
|
|
|
<!-- Bulb outline -->
|
|
<path
|
|
class="outline"
|
|
d="M12 3.5c-3 0-5.5 2.4-5.5 5.4 0 1.8.8 3.1 1.7 4.1.7.8 1.3 1.6 1.5 2.6h4.6c.2-1 .8-1.8 1.5-2.6.9-1 1.7-2.3 1.7-4.1 0-3-2.5-5.4-5.5-5.4z"
|
|
/>
|
|
|
|
<!-- Filament (also black now) -->
|
|
<path
|
|
class="outline"
|
|
d="M9.5 13.5c.6.7 1.4 1.1 2.5 1.1s1.9-.4 2.5-1.1"
|
|
/>
|
|
|
|
<!-- Base outline -->
|
|
<rect
|
|
class="outline"
|
|
x="9"
|
|
y="15.8"
|
|
width="6"
|
|
height="2.4"
|
|
rx="0.8"
|
|
/>
|
|
|
|
<!-- Bottom cap -->
|
|
<path
|
|
class="outline"
|
|
d="M10 18.2h4c0 1-.8 1.8-2 1.8s-2-.8-2-1.8z"
|
|
/>
|
|
</svg> |