Input (Generic)

Basic usage#

<Input name="my-input" />

Placeholder#

<Input placeholder="Text here..." name="my-input" />

Disabled#

<Input disabled name="my-input" />

Disable and Focusable#

<Input disabled focusable name="my-input" />

Readonly#

<Input readOnly name="my-input" />

Invalid#

<Input invalid name="my-input" />

Prefix#

Prefix
<Input renderPrefix={() => <span>Prefix</span>} name="my-input" />

Suffix#

Suffix
<Input renderSuffix={() => <span>Suffix</span>} name="my-input" />