import type { IUser } from '@rocket.chat/core-typings'; import type { Box } from '@rocket.chat/fuselage'; import type { ReactElement, ComponentProps } from 'react'; import { UserCardUsername } from '../UserCard'; type UserInfoUsernameProps = { username: IUser['username']; status: ReactElement; } & ComponentProps; const UserInfoUsername = ({ username, status, ...props }: UserInfoUsernameProps): ReactElement => ( ); export default UserInfoUsername;