import React from 'react'; import { View } from 'react-native'; import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; import Avatar from '../../containers/Avatar'; const RoomItemInner = ({ accessibilityLabel, avatar, avatarSize, type, baseUrl, userId, token, theme, children }) => ( {children} ); RoomItemInner.propTypes = { accessibilityLabel: PropTypes.string, avatar: PropTypes.string, avatarSize: PropTypes.number, type: PropTypes.string, baseUrl: PropTypes.string, userId: PropTypes.string, token: PropTypes.string, theme: PropTypes.string, children: PropTypes.element }; export default RoomItemInner;