diff options
| author | Mel <einebeere@gmail.com> | 2022-02-22 17:41:38 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2022-02-22 17:41:38 +0100 |
| commit | 3178bf5a96897981b050036623451da94c92ce17 (patch) | |
| tree | f671bfcf00c06835baaac7f69bf1f82371024f1b /assets/src/components/icons | |
| parent | 069ee95ddc9981d86a4ed39a2826aaf8781ea505 (diff) | |
| download | rook-3178bf5a96897981b050036623451da94c92ce17.tar.zst rook-3178bf5a96897981b050036623451da94c92ce17.zip | |
Diffstat (limited to 'assets/src/components/icons')
| -rw-r--r-- | assets/src/components/icons/ClipboardIcon.svelte | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/src/components/icons/ClipboardIcon.svelte b/assets/src/components/icons/ClipboardIcon.svelte new file mode 100644 index 0000000..11611c5 --- /dev/null +++ b/assets/src/components/icons/ClipboardIcon.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="M6 4v4h12V4h2.007c.548 0 .993.445.993.993v16.014a.994.994 0 0 1-.993.993H3.993A.994.994 0 0 1 3 21.007V4.993C3 4.445 3.445 4 3.993 4H6zm2-2h8v4H8V2z" + fill={color} + /> +</svg> |
