Skip to content

Instantly share code, notes, and snippets.

@kjosavik
Created April 3, 2019 12:54
Show Gist options
  • Save kjosavik/8c60632a3d027ffe8f8f2d56fbddfe6d to your computer and use it in GitHub Desktop.
Save kjosavik/8c60632a3d027ffe8f8f2d56fbddfe6d to your computer and use it in GitHub Desktop.
import React from 'react'
import styled from 'styled-components'
export default props => (
<MyBeautifulButton>Click Me</MyBeautifulButton>
);
const MyBeautifulButton = styled.button`
margin: 16px;
border: solid palevioletred 2px;
background: transparent;
padding: 12px;
font-weight: 600;
cursor: pointer;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment