diff --git a/components/Input.js b/components/Input.js new file mode 100644 index 0000000..31c4a34 --- /dev/null +++ b/components/Input.js @@ -0,0 +1,57 @@ +import React from 'react' + +import { COLORS } from '../lib/constants' + +const Input = ({ + accept, + color = COLORS.SECONDARY, + name, + onChange = () => {}, + placeholder, + title, + type, + value, + align = 'right' +}) => { + return ( + + + + + ) +} + +export default Input