"use client"; import Image from "next/image"; import { motion } from "motion/react"; import { cn } from "@/lib/utils"; type AvatarMotionProps = { src: string; alt: string; size?: number; // px className?: string; }; export function AvatarMotion({ src, alt, size = 160, className, }: AvatarMotionProps) { // tailwind classes for typical 160px size const baseSizeClasses = size === 160 ? "h-40 w-40" : ""; return ( {alt} ); }