import { CSSProperties, ComponentPropsWithoutRef } from 'react' import clsx from 'clsx' import s from './avatar.module.scss' export type AvatarProps = ComponentPropsWithoutRef<'img'> & { size?: CSSProperties['width'] } export const Avatar = ({ className, size = '36px', style, ...rest }: AvatarProps) => { return ( ) }