@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.
15 lines • 555 B
TypeScript
import * as React from 'react';
import type { StyleProp, ViewStyle } from 'react-native';
import type { HMSBaseButtonProps } from './HMSBaseButton';
export interface HMSDangerButtonProps {
title: string;
loading: boolean;
onPress(): void;
testID?: HMSBaseButtonProps['testID'];
style?: StyleProp<ViewStyle>;
disabled?: boolean;
leftComponent?: React.ReactElement | null;
wrapWithGestureDetector?: boolean;
}
export declare const HMSDangerButton: React.FC<HMSDangerButtonProps>;
//# sourceMappingURL=HMSDangerButton.d.ts.map