import { motion } from "motion/react" import { IconAvatar } from "../icon-avatar" export default function AvatarBox({ checked }: { checked?: boolean }) { return ( {checked && ( )} ) }