From f9f3501c6cc5a826ec412de231604814d024f01f Mon Sep 17 00:00:00 2001 From: Harsh Tandiya Date: Sun, 1 Feb 2026 15:15:12 +0530 Subject: [PATCH 01/11] feat: add disabled prop to Avatar component --- frontend/src/components/ui/Avatar.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ui/Avatar.vue b/frontend/src/components/ui/Avatar.vue index 4160d04..700cb25 100644 --- a/frontend/src/components/ui/Avatar.vue +++ b/frontend/src/components/ui/Avatar.vue @@ -11,11 +11,13 @@ const props = withDefaults( variant?: "default" | "outline" | "filled"; shape?: "circle" | "square"; className?: string; + disabled?: boolean; }>(), { size: "md", variant: "default", shape: "circle", + disabled: false, } ); @@ -29,11 +31,16 @@ onMounted(async () => {