import React from 'react'; import { View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; import Avatar from '../../containers/Avatar'; interface IWrapper { accessibilityLabel: string; avatar: string; avatarSize: number; type: string; theme: string; rid: string; children: JSX.Element; } const Wrapper = ({ accessibilityLabel, avatar, avatarSize, type, theme, rid, children }: IWrapper) => ( {children} ); export default Wrapper;