This component no longer exists. It was in Pure UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
button-group-input-demo
pure-ui/button-group-input-demoRemovedExample
Pure UI publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/MusKRI/pure-ui/main/public/r/button-group-input-demo.jsonSource
1import { SearchIcon } from "lucide-react";23import { Button } from "@/registry/pure-ui/ui/button";4import { ButtonGroup } from "@/registry/pure-ui/ui/button-group";5import { Input } from "@/registry/pure-ui/ui/input";67export function ButtonGroupInputDemo() {8 return (9 <ButtonGroup>10 <Input placeholder="Search..." />11 <Button variant="outline" aria-label="Search">12 <SearchIcon />13 </Button>14 </ButtonGroup>15 );16}
What it pulls in
Other registry items
