diff options
Diffstat (limited to 'frontend/src/components/Common/Input.js')
| -rw-r--r-- | frontend/src/components/Common/Input.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/src/components/Common/Input.js b/frontend/src/components/Common/Input.js new file mode 100644 index 0000000..e000cfb --- /dev/null +++ b/frontend/src/components/Common/Input.js @@ -0,0 +1,9 @@ +import styled from 'styled-components' +import {Border, DropShadow, InputLike, Rounded} from "./mixins"; + +export const Input = styled.input` + ${Border} + ${Rounded} + ${DropShadow} + ${InputLike} +`
\ No newline at end of file |