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.
Field Input Start End Content Demo
wednesday-ui/field-input-start-end-content-demoRemovedComponent
A demo of the field input start end content
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/field-input-start-end-content-demo.jsonSource
1import { FieldInput } from "@/components/ui/field-input";2import { DollarSign, Percent } from "lucide-react";34export const FieldInputStartEndContentExample = () => {5 return (6 <div className="flex flex-col gap-4 w-full max-w-72">7 <FieldInput8 id="price"9 label="Price"10 startContent={<DollarSign size={20} />}11 endContent={<span className="text-sm text-muted-foreground">USD</span>}12 />13 <FieldInput14 id="discount"15 label="Discount"16 endContent={<Percent size={20} />}17 />18 </div>19 );20};
What it pulls in
Other registry items
