import { GlowingButton } from "@/components/ui/glowing-button"
export function GlowingButtonDemo() {
return (
<div className="flex flex-col gap-4">
<GlowingButton>Hover me</GlowingButton>
<GlowingButton glowColor="#ec4899">Hover Me</GlowingButton>
<GlowingButton glowColor="#22d3ee">Hover Me</GlowingButton>
</div>
)
}
pnpm dlx shadcn@latest add https://badtz-ui.com/r/glowing-button.json
import { GlowingButton } from "@/components/ui/buttons/glowing-button";
<GlowingButton>Hover me</GlowingButton>
glowing-button
props.
Prop | Type | Default |
---|---|---|
children? | React.ReactNode | - |
className? | string | - |
glowColor? | string | "#a3e635" |
On This Page