1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

[AC-1423] Add minWidth input to bit-progress component

This commit is contained in:
Shane Melton
2023-06-12 09:57:35 -07:00
parent a7f9984ddd
commit 95b2223a30
3 changed files with 14 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ export default {
showText: true,
size: "default",
bgColor: "primary",
minWidth: 0,
},
} as Meta;
@@ -38,3 +39,10 @@ export const CustomText: Story = {
text: "Loading...",
},
};
export const MinWidth: Story = {
args: {
barWidth: 0,
minWidth: 5,
},
};