aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Form/Input.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Form/Input.js')
-rw-r--r--frontend/src/components/Form/Input.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/frontend/src/components/Form/Input.js b/frontend/src/components/Form/Input.js
index 86af7d1..4dbc002 100644
--- a/frontend/src/components/Form/Input.js
+++ b/frontend/src/components/Form/Input.js
@@ -1,3 +1,10 @@
-import {RelPositioning} from "../Inputs/shared";
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}
+` \ No newline at end of file