aboutsummaryrefslogtreecommitdiff
path: root/src/components/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/helpers')
-rw-r--r--src/components/helpers/Icon.svelte5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/helpers/Icon.svelte b/src/components/helpers/Icon.svelte
index 75ee3f4..1d1a03e 100644
--- a/src/components/helpers/Icon.svelte
+++ b/src/components/helpers/Icon.svelte
@@ -32,6 +32,11 @@
box: 24,
path: `<path stroke-linecap="round" stroke-linejoin="round" d="M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3m2 4H10m0 0l3-3m-3 3l3 3" />`,
},
+ {
+ name: "checkmark",
+ box: 20,
+ path: `<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />`,
+ },
];
let displayIcon = icons.find((e) => e.name === name);
</script>