Skip to content

Commit 3fb9c3c

Browse files
refactor(ui/avatar.stories): add 'xs' size for username story
1 parent 2e4edbe commit 3fb9c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ui/__stories__/Avatar.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ export const WithUsername: Story = {
5757
render: (args) => (
5858
<HStack className="gap-4">
5959
<VStack>
60-
{(["md", "sm"] as const).map((size, idx) => (
60+
{(["md", "sm", "xs"] as const).map((size, idx) => (
6161
<Avatar key={idx} size={size} {...args} />
6262
))}
6363
</VStack>
6464
<VStack>
65-
{(["md", "sm"] as const).map((size, idx) => (
65+
{(["md", "sm", "xs"] as const).map((size, idx) => (
6666
<Avatar key={idx} size={size} direction="column" {...args} />
6767
))}
6868
</VStack>

0 commit comments

Comments
 (0)