Components
Loading preview...
A simple animated counter component.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/animated-counterimport { Counter } from "@/components/ui/animated-counter"
const Demo = () => {
return (
<>
<Counter end={50} duration={20} />
</>
)
}
export { Demo }