Components
An animated wave loading indicator built from bars that pulse vertically to signal a busy or loading state.
Loading preview...
import { Wave } from "@/components/ui/wave";
export default function WaveDemo() {
return (
<div className="flex min-h-64 items-center justify-center">
<Wave className="size-10 text-primary" />
</div>
);
}