Components
An ASCII-style loading indicator that moves a staggered unicode block trail across a fixed text track in a one-way conveyor loop.
Loading preview...
import { ConveyorLoop } from "@/components/ui/conveyor-loop";
export default function ConveyorLoopDemo() {
return (
<div className="flex min-h-[200px] items-center justify-center">
<span className="inline-flex items-center font-mono text-xl text-foreground">
<ConveyorLoop />
Loading
</span>
</div>
);
}