Input type component
npm install @acodez/inputfieldReact input component.
-----
- Installation
- PropsAPI
- Usage
-----
``bash`
npm install @acodez/inputfield
| Property | Type | Required | Description |
|-----|-----|-----|:-----|
|type|string|yes|input type, text, password, email|string
|size||no|size (height) of the input, nomral or big |string
|label||no|label of input, shoown above the input field |string
|errorMessage||no|error message|string
|forgotPassLink||no|Forgot Password link for password field|
-----
`jsx`
import InputField from "@acodez/inputfield";
Example - Basic
`jsx`
Example - With required, error message
`jsx`
Example - Type password (with forgot password link, show/hide password option)
`jsx`
Example - Size big, with label
`jsx``