Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active August 18, 2017 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraVieira/7c76a43ca271ae164746449f7d6b63de to your computer and use it in GitHub Desktop.
Save SaraVieira/7c76a43ca271ae164746449f7d6b63de to your computer and use it in GitHub Desktop.
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