aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Form/Input.js
blob: 7c9e4130002b5e51c084f144b3f700699b11a9a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
import styled from 'styled-components'
import {Border, DropShadow, InputLike, Rounded, Transition} from "./mixins";

export const Input = styled.input`
  ${Border}
  ${Rounded}
  ${DropShadow}
  ${InputLike}
`