This component no longer exists. It was in hoogin’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-14 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.
Spinner
hoogin/spinnerRemovedComponent
A lightweight loading spinner with no runtime dependencies.
Install it
npx shadcn@latest add https://shadcn.hoogin.be/r/spinner.jsonSource
1import type { ComponentProps } from "react"2import { cn } from "@/lib/utils"34function Spinner({ className, ...props }: ComponentProps<"span">) {5 return (6 <span7 aria-hidden="true"8 data-slot="spinner"9 className={cn(10 "size-4 animate-spin rounded-full border-2 border-current border-t-transparent",11 className12 )}13 {...props}14 />15 )16}1718export { Spinner }
