diff --git a/src/components/icons/ChevronsDownUp.svelte b/src/components/icons/ChevronsDownUp.svelte
index 6929600..c1ec586 100644
--- a/src/components/icons/ChevronsDownUp.svelte
+++ b/src/components/icons/ChevronsDownUp.svelte
@@ -4,10 +4,11 @@
import LucideIcon from './LucideIcon.svelte';
export let width = "24";
export let height = "24";
+ export let ariaLabel = "chevrons-down-up";
const svgPath = `
`;
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/components/icons/ChevronsUpDown.svelte b/src/components/icons/ChevronsUpDown.svelte
index 9bd4c49..ffd548a 100644
--- a/src/components/icons/ChevronsUpDown.svelte
+++ b/src/components/icons/ChevronsUpDown.svelte
@@ -4,9 +4,10 @@
import LucideIcon from './LucideIcon.svelte';
export let width = "24";
export let height = "24";
+ export let ariaLabel = "chevrons-up-down";
const svgPath = `
`;
-
+
diff --git a/src/components/icons/MoreVertical.svelte b/src/components/icons/MoreVertical.svelte
index f3c8464..d7f2e1c 100644
--- a/src/components/icons/MoreVertical.svelte
+++ b/src/components/icons/MoreVertical.svelte
@@ -4,6 +4,7 @@
import LucideIcon from './LucideIcon.svelte';
export let width = "24";
export let height = "24";
+ export let ariaLabel = "more-vertical";
const svgPath = `
@@ -11,4 +12,4 @@
`;
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/components/icons/Plus.svelte b/src/components/icons/Plus.svelte
index 50e050c..855b87d 100644
--- a/src/components/icons/Plus.svelte
+++ b/src/components/icons/Plus.svelte
@@ -4,6 +4,7 @@
import LucideIcon from './LucideIcon.svelte';
export let width = "24";
export let height = "24";
+ export let ariaLabel = "plus";
const svgPath = `
@@ -11,5 +12,5 @@
-
+
\ No newline at end of file
diff --git a/src/ui/Labels.svelte b/src/ui/Labels.svelte
index 5a82a44..18595c2 100644
--- a/src/ui/Labels.svelte
+++ b/src/ui/Labels.svelte
@@ -117,7 +117,7 @@
/>
{:else}
{/if}
diff --git a/src/ui/StaticTaskCard.svelte b/src/ui/StaticTaskCard.svelte
index c9151d5..9d30566 100644
--- a/src/ui/StaticTaskCard.svelte
+++ b/src/ui/StaticTaskCard.svelte
@@ -154,7 +154,7 @@
class="task-card-button mode-toggle-button"
on:click={(event) => switchMode(event, 'multi-line')}
>
-
+
@@ -246,7 +246,7 @@
class="task-card-button mode-toggle-button"
on:click={(event) => switchMode(event, 'single-line')}
>
-
+
diff --git a/src/ui/TaskCard.svelte b/src/ui/TaskCard.svelte
index 65863dc..0949194 100644
--- a/src/ui/TaskCard.svelte
+++ b/src/ui/TaskCard.svelte
@@ -231,7 +231,7 @@
{/if}
@@ -244,7 +244,7 @@