aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/Button.tsx
blob: 2d0fbc3538c18a105fc27b7c0a83e176370c78a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import styled from 'styled-components';
import { colors } from '../variables';

import { withContext, Props } from './withContext';

interface ButtonProps extends Props {
    large?: boolean;
}

const Button =
    styled.button <
    ButtonProps >
    `
  font-family: inherit;
  font-size: ${props => (props.large ? '1.125rem' : '.875rem')};
  font-weight: 500;
  white-space: nowrap;
  vertical-align: middle;
  background-color: ${props => props.colors.secondary};
  color: ${colors.black};
  border: 0;
  border-radius: 5rem;
  padding: ${props => (props.large ? '1.125rem 2.375rem' : '.5625rem 1.25rem')};
  display: inline-block;
`;

export default withContext(Button);