'use client' import { motion } from 'framer-motion' import { ReactNode } from 'react' interface AnimatedIconProps { children: ReactNode delay?: number } export default function AnimatedIcon({ children, delay = 0 }: AnimatedIconProps) { return ( {children} ) }