Last active
January 6, 2020 09:12
-
-
Save MrOpperman/2bf33700a45169ef7608fb919742c66b to your computer and use it in GitHub Desktop.
JS library interface style examples (React focused)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Material-ui --> | |
<Button variant="contained" color="primary"> | |
Hello world | |
</Button> | |
<!-- Semantic UI --> | |
<button class="ui button">Follow</button> | |
<!-- React bootstrap --> | |
<Button variant="primary">Primary</Button> | |
<!-- Shards React --> | |
<Button outline theme="secondary"> | |
Hello world | |
</Button> | |
<!-- Evergreen --> | |
<Button appearance="primary">Hi Evergreen!</Button> | |
<!-- Elemental UI --> | |
<Button type="primary">Primary</Button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment