import classNames from 'classnames'; import './Input.scss'; import { InputProps } from './types'; const Input = ({ type = 'text', variant = 'primary', name = '', label, disabled = false, required = false, placeholder = 'Enter input', value = '', helperText = '', error, noBorder, className = '', onChange, onBlur, onFocus, autoComplete = 'off', minValue = -Infinity, maxValue = Infinity, transparentBackground = false, ...props }: InputProps) => { return (