about summary refs log tree commit diff
path: root/assets/src/components/icons/LightbulbIcon.svelte
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-02-21 01:56:43 +0100
committerMel <einebeere@gmail.com>2022-02-21 01:56:43 +0100
commitacd85f6373dbf0edbc2cce5c9256464e5986abf0 (patch)
treea2b96efa7e2bad416650a4017b2bb5ac913ca9f3 /assets/src/components/icons/LightbulbIcon.svelte
parent20cf91ce9f49c994fae9448c4ae6f93d4bc79323 (diff)
downloadrook-acd85f6373dbf0edbc2cce5c9256464e5986abf0.tar.zst
rook-acd85f6373dbf0edbc2cce5c9256464e5986abf0.zip
Add toasts
Diffstat (limited to 'assets/src/components/icons/LightbulbIcon.svelte')
-rw-r--r--assets/src/components/icons/LightbulbIcon.svelte16
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/src/components/icons/LightbulbIcon.svelte b/assets/src/components/icons/LightbulbIcon.svelte
new file mode 100644
index 0000000..fbaef1d
--- /dev/null
+++ b/assets/src/components/icons/LightbulbIcon.svelte
@@ -0,0 +1,16 @@
+<script lang="ts">
+    export let color: "white" | "black";
+</script>
+
+<svg
+    xmlns="http://www.w3.org/2000/svg"
+    viewBox="0 0 24 24"
+    width="16"
+    height="16"
+>
+    <path fill="none" d="M0 0h24v24H0z" />
+    <path
+        d="M9.973 18H11v-5h2v5h1.027c.132-1.202.745-2.194 1.74-3.277.113-.122.832-.867.917-.973a6 6 0 1 0-9.37-.002c.086.107.807.853.918.974.996 1.084 1.609 2.076 1.741 3.278zM10 20v1h4v-1h-4zm-4.246-5a8 8 0 1 1 12.49.002C17.624 15.774 16 17 16 18.5V21a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2.5C8 17 6.375 15.774 5.754 15z"
+        fill={color}
+    />
+</svg>