Last active
August 18, 2017 21:24
-
-
Save SaraVieira/7c76a43ca271ae164746449f7d6b63de to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React from 'react'; | |
import styled from 'styled-components'; | |
import { Section, Paragraph } from './style.js'; | |
const Button = styled.button` | |
display: inline-block; | |
border-radius: 3px; | |
padding: 0.5rem 0; | |
margin: 0.5rem 1rem; | |
width: 11rem; | |
background: transparent; | |
color: white; | |
border: 2px solid white; | |
${p => p && p.secondary` | |
background: white; | |
color: palevioletred; | |
`} | |
` | |
const Main = () => ( | |
<Section> | |
<Paragraph> | |
Look at my buttons, they are amazing buttons ! | |
</Paragraph> | |
<Button type="primary"> | |
A Primary Button | |
</Button> | |
<Button type="secondary"> | |
And I am a secondary | |
</Button> | |
</Section> | |
); | |
export default Main; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment