Input

---
import Input from 'fulldev-ui/components/Input.astro'
---

<Input
  label="Email"
  icon="mail"
  name="input"
  type="email"
  placeholder="This is an input"
/>

Props

PropTypeDefault
labelComponentProps<typeof Label>['text']-
iconComponentProps<typeof Icon>['name']-
size'sm' | 'md' | 'lg'-
color'base' | 'brand'-
contrastboolean-
theme'light' | 'dark'-
HTML Attributesinput-

Examples

---
import Input from 'fulldev-ui/components/Input.astro'
---

<Input label="Name" icon="mail" name="name" type="email" />
---
import Input from 'fulldev-ui/components/Input.astro'
---

<Input size="sm" name="name" />
<Input size="md" name="name" />
<Input size="lg" name="name" />
---
import Input from 'fulldev-ui/components/Input.astro'
---

<Input color="base" name="name" />
<Input color="brand" name="name" />