Components
Loading preview...
An animated badge component with customizable text, color, and optional link functionality featuring a pulsing dot and smooth entrance animations.
npx shadcn@latest add https://21st.dev/r/karthikmudunuri/animated-badgeimport { AnimatedBadge } from "@/components/ui/animated-badge";
export default function AnimatedBadgeDemo() {
return(
<AnimatedBadge
text="Introducing Eldora ui"
color="#22d3ee"
href="/docs/components/animated-badge"
/>
)
}