about summary refs log tree commit diff
path: root/assets/src/components/icons
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-02-20 23:55:18 +0100
committerMel <einebeere@gmail.com>2022-02-20 23:55:18 +0100
commit9efb763cd698854a7e47847ac79eaff9ebee954a (patch)
tree2ff97565240da7ab6cc5185a263a2a419697ce09 /assets/src/components/icons
parent4541d11de92ae9998b05c7c47e917bb4235db9de (diff)
downloadrook-9efb763cd698854a7e47847ac79eaff9ebee954a.tar.zst
rook-9efb763cd698854a7e47847ac79eaff9ebee954a.zip
Empty requests placeholder
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>