import { motion } from 'framer-motion'; export type CheckmarkProps = React.ComponentProps & { isAnimating?: boolean; color?: string; duration?: number; size?: number; }; export function AnimatedCheckmark({ isAnimating = false, color = '#FFF', duration = 0.5, size = 28, ...restProps }: CheckmarkProps) { return ( ); }