@100mslive/react-native-room-kit
Version:
100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.
18 lines • 706 B
TypeScript
import * as React from 'react';
import type { StyleProp, ViewStyle, TextStyle, ColorValue, TouchableHighlightProps } from 'react-native';
export interface HMSBaseButtonProps {
title: string;
loading: boolean;
onPress(e: any): void;
wrapWithGestureDetector?: boolean;
testID?: TouchableHighlightProps['testID'];
underlayColor?: ColorValue | undefined;
loaderColor?: ColorValue | undefined;
style?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
disabled?: boolean;
leftComponent?: React.ReactElement | null;
useTouchableOpacity?: boolean;
}
export declare const HMSBaseButton: React.FC<HMSBaseButtonProps>;
//# sourceMappingURL=HMSBaseButton.d.ts.map