diff --git a/plugins/tracker-assets/assets/icons.svg b/plugins/tracker-assets/assets/icons.svg index 5ce87ed628..5a6adf88df 100644 --- a/plugins/tracker-assets/assets/icons.svg +++ b/plugins/tracker-assets/assets/icons.svg @@ -52,21 +52,20 @@ - + - - + - - + + - + - + diff --git a/plugins/tracker-resources/src/components/icons/StatusIcon.svelte b/plugins/tracker-resources/src/components/icons/StatusIcon.svelte new file mode 100644 index 0000000000..0552674e7e --- /dev/null +++ b/plugins/tracker-resources/src/components/icons/StatusIcon.svelte @@ -0,0 +1,48 @@ + + + + {#if status === 'backlog'} + + {:else if status === 'unstarted'} + + {:else if status === 'started'} + + + {:else if status === 'completed'} + + {:else if status === 'canceled'} + + {/if} +