Components
Loading preview...
A visually engaging button component that responds to hover with dynamic transitions, adapting smoothly between light and dark modes for enhanced user interactivity.
npx shadcn@latest add https://21st.dev/r/dillionverma/interactive-hover-buttonimport { InteractiveHoverButton } from "@/components/ui/interactive-hover-button";
function InteractiveHoverButtonDemo() {
return (
<div className="relative justify-center">
<InteractiveHoverButton />
</div>
);
}
export { InteractiveHoverButtonDemo };