Components
A button with expanding dot animation, loading state with spinner, and success checkmark. Multi-state interactive component.
npx shadcn@latest add https://21st.dev/r/Shatlyk1011/interactive-hover-buttonLoading preview...
import InteractiveHoverButton from "../components/ui/interactive-hover-button";
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-screen bg-background">
<InteractiveHoverButton text="Button" />
</div>
);
}