Input

Displays a form input field or a component that looks like an input field.

Examples

Code

Example
import { Input } from "cephalopod-design-system"
import { Label } from "cephalopod-design-system"

<div className="grid w-full max-w-sm items-center gap-1.5">
  <Label htmlFor="email">Email</Label>
  <Input type="email" id="email" placeholder="Email" />
</div>