A visually distinct button component featuring a configurable, animated glow effect to highlight calls to action or important interactions.
import { Component } from "@/components/ui/glowing-button"; const DemoOne = () => { return ( <div className="flex flex-col gap-4 w-full h-screen justify-center items-center"> <Component>Hover me</Component> <Component glowColor="#ec4899">Hover me</Component> <Component glowColor="#22d3ee">Hover me</Component> </div> ); }; export { DemoOne };
Part of Badtz UI — browse the full library on 21st.dev.