1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Merge branch 'master' into feature/org-admin-refresh

This commit is contained in:
Andreas Coroiu
2022-10-04 10:00:12 +02:00
194 changed files with 2686 additions and 547 deletions

View File

@@ -6,6 +6,7 @@ export default {
title: "Component Library/Avatar",
component: AvatarComponent,
args: {
id: undefined,
text: "Walt Walterson",
size: "default",
},
@@ -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",
};
@@ -45,7 +44,6 @@ LightBackground.args = {
export const Border = Template.bind({});
Border.args = {
...Default.args,
border: true,
};