import { motion, useReducedMotion } from 'framer-motion'; import type { ReactNode } from 'react'; interface Props { children: ReactNode; onClick?: () => void; className?: string; } export const AnimatedNumber = ({ children, onClick, className }: Props) => { const reducedMotion = useReducedMotion(); return ( onClick?.()} > {children} ); };