import { useTheme } from '@emotion/react'; import { motion } from 'framer-motion'; export type AnimatedCheckmarkProps = React.ComponentProps< typeof motion.path > & { isAnimating?: boolean; color?: string; duration?: number; size?: number; }; export const AnimatedCheckmark = ({ isAnimating = false, color, duration = 0.5, size = 28, }: AnimatedCheckmarkProps) => { const theme = useTheme(); return ( ); };