aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/button.tsx
blob: d3b36ebfd85a4c411286b1034c09202511744777 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import styled from 'styled-components';

import { colors, media } from 'ts/variables';

interface ButtonProps {
    large?: boolean;
}

const Button =
    styled.button <
    ButtonProps >
    `
  font-family: inherit;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: middle;
  background-color: ${props => props.theme.colors.secondary};
  color: ${colors.black};
  border: 0;
  border-radius: 5rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;

  ${props =>
      props.large
          ? `
      font-size: 1rem;
      padding: 1.1875rem 2.375rem 1.0625rem;
  `
          : `
      font-size: .875rem;
      padding: .5625rem 1.25rem;
  `}

  :hover, :focus {
    background-color: ${props => props.theme.colors.secondary_alt};
    outline: 0;
  }

  ${media.small`
  font-size: .875rem;
  padding: .5625rem 1.25rem;
  `}

    ${props =>
        props.large &&
        media.small`
        font-size: 1rem;
        padding: 1rem 1.5rem .75rem;
    `}
`;

export { Button };