Skip to content

Commit

Permalink
feat(storybook): Add disabled button
Browse files Browse the repository at this point in the history
  • Loading branch information
merycardenas27 authored and stephsalazar committed Apr 21, 2020
1 parent 9c53310 commit 68ca978
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/Buttons/index.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,13 @@ storiesOf('Buttons', module)
<br />
<Button color="secondary" size="small" variant="outlined">Regístrate</Button>
</>
))
.add('Disabled button', () => (
<>
<Button size="large" style={{ marginBottom: 16 }} disabled>Publica una vacante</Button>
<br />
<Button style={{ marginBottom: 16 }} disabled>Publica una vacante</Button>
<br />
<Button size="small" disabled>Publica una vacante</Button>
</>
));

0 comments on commit 68ca978

Please sign in to comment.