Components
npx shadcn@latest add https://21st.dev/r/tom_ui/animated-checkboxLoading preview...
import { AnimatedCheckbox } from "@/components/ui/animated-checkbox"
export default function AnimatedCheckboxDemo() {
return (
<div className="flex flex-col items-center justify-center min-h-[400px] gap-4 p-8">
<AnimatedCheckbox title="Buy groceries" />
<AnimatedCheckbox title="Walk the dog" defaultChecked />
<AnimatedCheckbox title="Read a book" />
</div>
)
}