This component no longer exists. It was in Wednesday UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 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.
Input Start End Content Demo
wednesday-ui/input-start-end-content-demoRemovedComponent
A demo of the input start end content
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/input-start-end-content-demo.jsonSource
1import { Input } from "@/components/ui/input";2import { CheckCheck, SearchIcon } from "lucide-react";34export const InputStartEndContentExample = () => {5 const startContent = <SearchIcon size={20} />;6 const endContent = <CheckCheck size={20} />;78 return (9 <div className="flex flex-col gap-4 w-full max-w-72">10 <Input11 variant="bordered"12 placeholder="Please enter"13 startContent={startContent}14 />15 <Input16 variant="bordered"17 placeholder="Please enter"18 endContent={endContent}19 />20 <Input21 variant="bordered"22 placeholder="Please enter"23 startContent={startContent}24 endContent={endContent}25 />26 </div>27 );28};
What it pulls in
Other registry items
