Components
Loading preview...
The component includes all the CSS animations and custom properties inline, featuring a dynamic conic gradient that rotates and changes, along with an animated line width effect. You can customize the size by passing a `size` prop, and it maintains all the smooth animations
npx shadcn@latest add https://21st.dev/r/designali-in/animated-spinnerimport { AnimatedSpinner } from "@/components/ui/animated-spinner";
export default function DemoOne() {
return (
<div className="min-h-screen w-full flex items-center justify-center">
<AnimatedSpinner />
</div>
)
}