Animated Number
Animated Number is a React and Tailwind CSS component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
Motion Primitives
MIT
other
What it is
Animated Number is a React and Tailwind CSS component from Motion Primitives, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from Motion Primitives and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Animated Number
'use client';
import { cn } from '@/lib/utils';
import { motion, SpringOptions, useSpring, useTransform } from 'motion/react';
import { useEffect } from 'react';
export type AnimatedNumberProps = {
value: number;
className?: string;
springOptions?: SpringOptions;
as?: React.ElementType;
};
export function AnimatedNumber({
value,
className,
springOptions,
as = 'span',
}: AnimatedNumberProps) {
const MotionComponent = motion.create(as as keyof JSX.IntrinsicElements);
const spring = useSpring(value, springOptions);
const display = useTransform(spring, (current) =>
Math.round(current).toLocaleString()
);
useEffect(() => {
spring.set(value);
}, [spring, value]);
return (
<MotionComponent className={cn('tabular-nums', className)}>
{display}
</MotionComponent>
);
}