Utility
AI
Terminal
Installation
pnpm dlx shadcn@latest add https://termcn.dev/r/email-input.json
Usage
import { EmailInput } from "@/components/ui/email-input";<EmailInput
label="Email"
placeholder="you@example.com"
onSubmit={(value) => console.log("Submitted:", value)}
/>API Reference
EmailInput
| Prop | Type | Default |
|---|---|---|
value | string | undefined |
onChange | (value: string) => void | undefined |
onSubmit | (value: string) => void | undefined |
label | string | undefined |
placeholder | string | "you@example.com" |
autoFocus | boolean | false |
id | string | undefined |
width | number | 40 |
suggestions | string[] | ["gmail.com", "yahoo.com", "hotmail.com", "outlook.com"] |