diff options
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 |
