about summary refs log tree commit diff
path: root/assets/src/components/icons
diff options
context:
space:
mode:
Diffstat (limited to 'assets/src/components/icons')
-rw-r--r--assets/src/components/icons/ZzzIcon.svelte16
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/src/components/icons/ZzzIcon.svelte b/assets/src/components/icons/ZzzIcon.svelte
new file mode 100644
index 0000000..858c55d
--- /dev/null
+++ b/assets/src/components/icons/ZzzIcon.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="M11 11v2l-5.327 6H11v2H3v-2l5.326-6H3v-2h8zm10-8v2l-5.327 6H21v2h-8v-2l5.326-6H13V3h8z"
+        fill={color}
+    />
+</svg>