Skip to content

Commit

Permalink
Ensure avatar component is stable (#3640)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Sep 29, 2022
1 parent a0e89af commit 1fbfb89
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libs/components/src/avatar/avatar.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default {
title: "Component Library/Avatar",
component: AvatarComponent,
args: {
id: undefined,
text: "Walt Walterson",
size: "default",
},
Expand All @@ -28,13 +29,11 @@ Default.args = {

export const Large = Template.bind({});
Large.args = {
...Default.args,
size: "large",
};

export const Small = Template.bind({});
Small.args = {
...Default.args,
size: "small",
};

Expand All @@ -45,7 +44,6 @@ LightBackground.args = {

export const Border = Template.bind({});
Border.args = {
...Default.args,
border: true,
};

Expand Down

0 comments on commit 1fbfb89

Please sign in to comment.