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