Primitive single-line text input that accepts standard HTML attributes.
import { Input } from "@/components/ui/heroui-input" export default function Demo() { return ( <div className="flex w-full items-center justify-center"> <Input aria-label="Name" className="w-64" placeholder="Enter your name" /> </div> ) }