@gathertown/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
13 lines (12 loc) • 449 B
TypeScript
import type { GestureResponderEvent } from 'react-native';
type Props = {
uri: string;
name: string;
label?: string;
muted: boolean;
disabled: boolean;
onPressActionMenu?: (ev: GestureResponderEvent) => void;
onPressAvatar?: (ev: GestureResponderEvent) => void;
};
declare const UserActionBar: ({ muted, uri, name, disabled, label, onPressActionMenu, onPressAvatar }: Props) => JSX.Element;
export default UserActionBar;