@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
19 lines • 596 B
JavaScript
import React from 'react';
import { StyleSheet, View } from 'react-native';
import TypedPlaceholder from '../../../components/TypedPlaceholder';
const GroupChannelOperatorsStatusEmpty = () => {
return /*#__PURE__*/React.createElement(View, {
style: styles.container
}, /*#__PURE__*/React.createElement(TypedPlaceholder, {
type: 'no-users'
}));
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
}
});
export default GroupChannelOperatorsStatusEmpty;
//# sourceMappingURL=GroupChannelOperatorsStatusEmpty.js.map