From cd5547d058b152cd42e90e456416747c93e16689 Mon Sep 17 00:00:00 2001 From: Eric Y Liu Date: Sat, 26 Jun 2021 18:48:01 -0700 Subject: [PATCH] fix(inline-loading): use error filled icon --- src/InlineLoading/InlineLoading.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/InlineLoading/InlineLoading.svelte b/src/InlineLoading/InlineLoading.svelte index 4be7d9dc..2a082258 100644 --- a/src/InlineLoading/InlineLoading.svelte +++ b/src/InlineLoading/InlineLoading.svelte @@ -22,7 +22,7 @@ import { createEventDispatcher, afterUpdate, onMount } from "svelte"; import CheckmarkFilled16 from "carbon-icons-svelte/lib/CheckmarkFilled16/CheckmarkFilled16.svelte"; - import Error20 from "carbon-icons-svelte/lib/Error20/Error20.svelte"; + import ErrorFilled16 from "carbon-icons-svelte/lib/ErrorFilled16/ErrorFilled16.svelte"; import Loading from "../Loading/Loading.svelte"; const dispatch = createEventDispatcher(); @@ -55,7 +55,7 @@ >
{#if status === "error"} - + {:else if status === "finished"} {:else if status === "inactive" || status === "active"}