aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Common/Input.js
diff options
context:
space:
mode:
authorjackyzha0 <[email protected]>2021-03-06 16:32:09 -0800
committerjackyzha0 <[email protected]>2021-03-06 16:32:09 -0800
commit75e8bdd2d4cdaefe28ed40a7735c993f98d15754 (patch)
tree1b84a2222a11332075dc5de4405cd9d9e86193a5 /frontend/src/components/Common/Input.js
parentpaste modal fixes (diff)
downloadctrl-v-75e8bdd2d4cdaefe28ed40a7735c993f98d15754.tar.xz
ctrl-v-75e8bdd2d4cdaefe28ed40a7735c993f98d15754.zip
refactor form -> common
Diffstat (limited to 'frontend/src/components/Common/Input.js')
-rw-r--r--frontend/src/components/Common/Input.js9
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