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