import React from 'react' import { COLORS } from '../lib/constants' const Input = React.forwardRef( ({ color = COLORS.SECONDARY, align = 'right', width = '100%', label, ...props }, ref) => ( {label && } ) ) export default Input