Components
Loading preview...
Indicate an action running in the background.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/loading-dotsimport { LoadingDots } from "@/components/ui/loading-dots";
export default function WithTextDemo() {
return (
<LoadingDots size={4}>
<div className="text-gray-900 text-sm font-sans">Loading</div>
</LoadingDots>
);
}