import {Props} from '@/types' import clsx from 'clsx' import Link from 'next/link' import Image from 'next/image' import me from '/public/images/me.jpg' export function AvatarContainer({className, ...props}: { style?: Object } & Props) { return (
) } export function Avatar({large = false, className, ...props}: { large?: boolean, style?: Object } & Props) { return ( ) }