diff options
| author | Mel <einebeere@gmail.com> | 2022-02-21 01:56:43 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2022-02-21 01:56:43 +0100 |
| commit | acd85f6373dbf0edbc2cce5c9256464e5986abf0 (patch) | |
| tree | a2b96efa7e2bad416650a4017b2bb5ac913ca9f3 /assets/src/components/icons/FlashIcon.svelte | |
| parent | 20cf91ce9f49c994fae9448c4ae6f93d4bc79323 (diff) | |
| download | rook-acd85f6373dbf0edbc2cce5c9256464e5986abf0.tar.zst rook-acd85f6373dbf0edbc2cce5c9256464e5986abf0.zip | |
Add toasts
Diffstat (limited to 'assets/src/components/icons/FlashIcon.svelte')
| -rw-r--r-- | assets/src/components/icons/FlashIcon.svelte | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/src/components/icons/FlashIcon.svelte b/assets/src/components/icons/FlashIcon.svelte new file mode 100644 index 0000000..57525f2 --- /dev/null +++ b/assets/src/components/icons/FlashIcon.svelte @@ -0,0 +1,13 @@ +<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="M13 10h7l-9 13v-9H4l9-13z" fill={color} /> +</svg> |
