update stories and snapshots

- The snapshot styles changed because the Button component was modified
This commit is contained in:
Yann Braga 2022-08-12 13:25:09 +02:00
parent 3f1f574738
commit 6d1585abfa
5 changed files with 18 additions and 16 deletions

View File

@ -9,4 +9,4 @@ export default {
component: Button,
};
export const Basic = () => <Button label="Click me" />;
export const Basic = () => <Button>Click me</Button>;

View File

@ -8,4 +8,4 @@ export default {
component: Button,
};
export const Basic = () => <Button label="Click me" />;
export const Basic = () => <Button>Click me</Button>;

View File

@ -46,12 +46,12 @@ exports[`Storyshots Custom Prefix/AutoTitle Basic 1`] = `
.emotion-0 svg {
display: inline-block;
height: 14px;
width: 14px;
height: 12px;
width: 12px;
vertical-align: top;
margin-right: 4px;
margin-top: -1px;
margin-bottom: -1px;
margin-top: 0;
margin-bottom: 0;
pointer-events: none;
}
@ -81,8 +81,9 @@ exports[`Storyshots Custom Prefix/AutoTitle Basic 1`] = `
<button
className="emotion-0"
label="Click me"
/>
>
Click me
</button>
`;
exports[`Storyshots Custom Prefix/CustomTitle Basic 1`] = `
@ -131,12 +132,12 @@ exports[`Storyshots Custom Prefix/CustomTitle Basic 1`] = `
.emotion-0 svg {
display: inline-block;
height: 14px;
width: 14px;
height: 12px;
width: 12px;
vertical-align: top;
margin-right: 4px;
margin-top: -1px;
margin-bottom: -1px;
margin-top: 0;
margin-bottom: 0;
pointer-events: none;
}
@ -166,8 +167,9 @@ exports[`Storyshots Custom Prefix/CustomTitle Basic 1`] = `
<button
className="emotion-0"
label="Click me"
/>
>
Click me
</button>
`;
exports[`Storyshots Demo/AccountForm Standard 1`] = `

View File

@ -9,4 +9,4 @@ export default {
component: Button,
};
export const Basic = () => <Button label="Click me" />;
export const Basic = () => <Button>Click me</Button>;

View File

@ -8,4 +8,4 @@ export default {
component: Button,
};
export const Basic = () => <Button label="Click me" />;
export const Basic = () => <Button>Click me</Button>;