import { BigField, SmallField } from "./styles";
import { Props } from "./types";
const Input = ({
type = 'text',
variant = 'small',
name,
value,
required,
placeholder,
className,
onChange
}: Props) => {
return variant === 'small' ? (
) : (
);
};
export default Input;