Field

Form field wrapper with label, hint, and error

Preview

We will never share your email

Props
label

Field label text

hint

Helper text shown below the control

error

Error message (replaces hint when set)

required

Shows required indicator

Code
<Field label="Email" hint="We will never share your email" error="" required>
  <Input type="email" placeholder="you@example.com" />
</Field>