diff --git a/web/src/lib/components/ui/User.stories.svelte b/web/src/lib/components/ui/User.stories.svelte
index 3c5b54a4..e11fade9 100644
--- a/web/src/lib/components/ui/User.stories.svelte
+++ b/web/src/lib/components/ui/User.stories.svelte
@@ -11,14 +11,14 @@
src: { control: "text" },
size: {
control: { type: "inline-radio" },
- options: ["sm", "md", "lg"]
+ options: ["header", "large", "regular", "small", "mini"]
},
showImage: { control: "boolean" },
showText: { control: "boolean" }
},
args: {
handle: "user.tld",
- size: "md",
+ size: "regular",
showImage: true,
showText: true
}
@@ -32,8 +32,10 @@
-
-
-
+
+
+
+
+
diff --git a/web/src/lib/components/ui/User.svelte b/web/src/lib/components/ui/User.svelte
index cf239e4d..a4dc76ed 100644
--- a/web/src/lib/components/ui/User.svelte
+++ b/web/src/lib/components/ui/User.svelte
@@ -1,37 +1,56 @@
-
+
{#if showImage}
{/if}
{#if showText && handle}
- {handle}
+ {handle}
{/if}