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

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