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