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

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