border-bottom should be configurable and off for transparent

This commit is contained in:
Desmond Grealy
2023-01-01 15:57:19 -08:00
parent 8b7e9bd868
commit 862a0ac3fd
2 changed files with 14 additions and 2 deletions
@@ -21,4 +21,15 @@ const Template = (args) => {
};
export const Default = Template.bind({});
Default.args = { session: { data: { user: { name: "StoryBook user" } }, status: "authenticated" }, transparent: false };
Default.args = {
session: {
data: {
user: {
name: "StoryBook user"
}
},
status: "authenticated"
},
transparent: false,
borderClass: undefined
};