'use client' import { FC } from 'react' import AvatarWithPlaceholder from '../AvatarWithPlaceholder' import { AvatarContainer } from './styled' import { CircledAvatarProps } from './types' const CircledAvatar: FC = ({ width = 40, height = 40, hasError, children, alt, ...props }) => ( ({ border: `solid 8px ${palette.background.default}` })} alt={alt} {...props} > {children} ) export default CircledAvatar