import React from 'react' import styles from './input.module.css' type Props = React.HTMLProps & { label?: string fontSize?: number | string } // eslint-disable-next-line react/display-name const Input = React.forwardRef(({ label, className, ...props }, ref) => { return (
{label && }
) }) export default Input