Standard input attributes including type, placeholder, etc.
A styled input element
Input is a styled wrapper around the native HTML input element. It supports all standard input types and attributes.
// Basic text input
<Input placeholder="Enter text..." />
// Email input
<Input type="email" placeholder="[email protected]" />
// Disabled input
<Input disabled value="Cannot edit" />
A styled text input component.