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 Size Demo
wednesday-ui/input-size-demoRemovedComponent
A demo of the input size
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/input-size-demo.jsonSource
1import { Input } from "@/components/ui/input";23export const inputSizes = ["sm", "md", "lg"] as const;45export const InputSizeExample = () => {6 return (7 <div className="flex flex-col gap-4 w-full max-w-72">8 {inputSizes.map((size) => (9 <Input key={size} size={size} placeholder={size} />10 ))}11 </div>12 );13};
What it pulls in
Other registry items
