Components
A small loading spinner that combines a spinning ring and a pulsing dot to indicate a busy or loading state.
Loading preview...
import SpinnerSizeSmall from "@/components/ui/spinner-size-small";
export default function Default() {
return (
<div className="flex min-h-[220px] w-full items-center justify-center bg-background text-foreground">
<SpinnerSizeSmall />
</div>
);
}