import { Options } from '@rocket.chat/fuselage'; import type { FC } from 'react'; import React from 'react'; import RoomAvatar from '../avatar/RoomAvatar'; type AvatarProps = { value: string; type: string; avatarETag?: string; }; const Avatar: FC = ({ value, type, avatarETag, ...props }) => ( ); export default Avatar;