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