Component referenceSource owned

Input Group

Combines inputs with icons, text, and actions inside one field boundary.

Upstream reference
On this page2 sectionsBack to top
Live preview
Loading preview...

#Installation

npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/input-group.json

#Usage

import { Search } from "lucide-react";

import {
  InputGroup,
  InputGroupAddon,
  InputGroupInput,
} from "@/components/ui/input-group";
<InputGroup>
  <InputGroupAddon>
    <Search aria-hidden="true" />
  </InputGroupAddon>
  <InputGroupInput aria-label="Search components" placeholder="Search components..." />
</InputGroup>