import { AvatarProps, Flex, Image } from '@metafam/ds'; type RoundImageProps = AvatarProps & { src?: string; }; export const RoundImage: React.FC = ({ src, ...props }) => ( );