diff options
author | Blaster4385 <[email protected]> | 2022-08-12 08:44:33 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2022-08-12 08:44:33 +0530 |
commit | 30a7a079b16e1d17e8cc920d2fb3338f79767432 (patch) | |
tree | c519f0f546c5161cb1668ba74fe2370ffed9d40a /client/src/components/Input/Input.jsx | |
parent | 53795fe3153f514e0eda6a01f6e55eeb50c94d46 (diff) |
Add form validators and country api
Diffstat (limited to 'client/src/components/Input/Input.jsx')
-rw-r--r-- | client/src/components/Input/Input.jsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/components/Input/Input.jsx b/client/src/components/Input/Input.jsx index 5987e27..08e8fab 100644 --- a/client/src/components/Input/Input.jsx +++ b/client/src/components/Input/Input.jsx @@ -1,7 +1,7 @@ import React from 'react' import styles from './Input.module.css' -const Input = ({ label, id, value, type, name, onChange, placeholder }) => { +const Input = ({ label, id, value, type, name, onChange, placeholder, maxLength, pattern, minLength, onInvalid, onValid }) => { return ( <div className={styles.input}> <div className={styles.input__container}> @@ -15,6 +15,11 @@ const Input = ({ label, id, value, type, name, onChange, placeholder }) => { onChange={onChange} required placeholder={placeholder} + pattern={pattern} + maxLength={maxLength} + minLength={minLength} + onInvalid={onInvalid} + onValid={onValid} /> </div> </div> |