You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/components/UI/Input_20220518160658.tsx

25 lines
805 B

import React from 'react'
import PropTypes from 'prop-types';
import classNames from 'classnames';
interface Props {
onChange: () => void,
type: string,
name: string,
label: string,
value: string,
}
export const Input: React.FC<Props> = ({type, name, label, onChange, value }) => {
return(
<div className={'blocks'}>
<span className={'input input_filled'}>
<input className={'input_field input_field_mui'} type={type} name={name} onChange={(e) => onChange(e)} value={value}/>
<label className={'input_label input_label_mui'} htmlFor={label}>
<span className={classNames('input_label_content', 'input_label_content_mui')}>{label}</span>
</label>
</span>
</div>
)
}