diff --git a/frontend/components/global/Avatar.vue b/frontend/components/global/Avatar.vue
index f6c9d29..54ab6ca 100644
--- a/frontend/components/global/Avatar.vue
+++ b/frontend/components/global/Avatar.vue
@@ -8,6 +8,7 @@ import { useImage } from "@vueuse/core";
type Props = {
src: string | null | undefined;
alt: string;
+ iconClass?: string;
};
// props
@@ -18,7 +19,7 @@ const { src } = toRefs(props);
// state
-const { isLoading } = useImage({ src: src.value ?? '' });
+const { isLoading } = useImage({ src: src.value ?? "" });
@@ -41,7 +42,12 @@ const { isLoading } = useImage({ src: src.value ?? '' });
:delay-ms="600"
>