Forms
Input
A text field.
Input
A text field.
Install
npx shadcn@latest add http://localhost:3000/r/input.jsonUsage
"use client"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
export function Example() {
return (
<div className="w-full max-w-xs space-y-2">
<Label htmlFor="showcase-input">Project name</Label>
<Input id="showcase-input" placeholder="e.g. pepeloper/ui" />
</div>
)
}API
Inputfunction Input(props: React.ComponentProps<"input">)Source code +
import * as React from "react"
import { Input as InputPrimitive } from "@base-ui/react/input"
import { cn } from "cn"
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
<InputPrimitive
type={type}
data-slot="input"
className={cn(
"h-8 w-full min-w-0 rounded-2xl border border-transparent bg-input/50 px-2.5 py-1 text-base transition-[color,box-shadow] duration-200 outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-0 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-0 md:text-sm dark:aria-invalid:border-destructive/50",
className
)}
{...props}
/>
)
}
export { Input }