import React from 'react'; import { View } from 'react-native'; import { DisplayMode, themes } from '../../lib/constants'; import { IOmnichannelSource } from '../../definitions'; import { TSupportedThemes } from '../../theme'; import IconOrAvatar from './IconOrAvatar'; import styles from './styles'; interface IWrapper { accessibilityLabel: string; avatar: string; type: string; theme: TSupportedThemes; rid: string; children: JSX.Element; displayMode: string; prid: string; showLastMessage: boolean; status: string; isGroupChat: boolean; teamMain: boolean; showAvatar: boolean; sourceType: IOmnichannelSource; } const Wrapper = ({ accessibilityLabel, theme, children, displayMode, ...props }: IWrapper) => ( {children} ); export default Wrapper;