Input.jsx 276 B

123456789101112
  1. import { Input } from 'antd'
  2. export const CustomInput = ({ state, onChangeText, checked }) => (
  3. <Input
  4. className="Input"
  5. value={state}
  6. placeholder={state || ''}
  7. onChange={onChangeText}
  8. type={checked ? 'password':'text'}
  9. size="large"
  10. />
  11. )