import React from 'react'; import { View } from 'react-native'; import { DisplayMode, themes } from '../../lib/constants'; import IconOrAvatar from './IconOrAvatar'; import { IWrapperProps } from './interfaces'; import styles from './styles'; const Wrapper = ({ accessibilityLabel, theme, children, displayMode, ...props }: IWrapperProps): React.ReactElement => ( {children} ); export default Wrapper;