diff options
| author | Melonai <einebeere@gmail.com> | 2021-06-17 00:30:58 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2021-06-17 00:30:58 +0200 |
| commit | f6f44950e79041e4f7afe441fc4b850e1030f27a (patch) | |
| tree | 027751b354414260606251c631481f6a4b2c94b9 /assets/src/components/icons/CheckIcon.svelte | |
| parent | b98b1cd0e5d07fd37be54592edd362f443a145ad (diff) | |
| download | rook-f6f44950e79041e4f7afe441fc4b850e1030f27a.tar.zst rook-f6f44950e79041e4f7afe441fc4b850e1030f27a.zip | |
Share page design
Diffstat (limited to 'assets/src/components/icons/CheckIcon.svelte')
| -rw-r--r-- | assets/src/components/icons/CheckIcon.svelte | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/assets/src/components/icons/CheckIcon.svelte b/assets/src/components/icons/CheckIcon.svelte new file mode 100644 index 0000000..d395619 --- /dev/null +++ b/assets/src/components/icons/CheckIcon.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="M10 15.172l9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z" + fill={color} + /> +</svg> \ No newline at end of file |
