Primitives

Input · Field

40px tall (36px in C). Hairline border. Focus = accent border + 14% accent halo. Icon on the left, suffix on the right.

installnpx shadcn@latest add https://br-design-system2.vercel.app/r/br-primitives.json

Preview

import { Field, Input, Textarea, Select } from "@/components/br/primitives";
import { Mail } from "@/components/br/icons";

<Field label="Email" error="Domain looks incomplete.">
  <Input
    icon={<Mail size={14} />}
    placeholder="you@studio.co"
    defaultValue="hello@"
  />
</Field>

<Field label="Hourly budget" hint="Net, EUR.">
  <Input defaultValue="120" suffix="€/h" />
</Field>

Props

PropTypeDefaultDescription
labelReactNodeEyebrow-style label above the input.
hintReactNodeHelper text below (subtle).
errorReactNodeError text below (accent). Replaces hint when present.
iconReactNode (Input only)Left icon inside the input.
suffixReactNode (Input only)Right affix — kbd hint, unit, etc.