@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.
13 lines • 410 B
TypeScript
import React from 'react';
import type { StyleProp, TextStyle, ViewStyle } from 'react-native';
interface SwitchRow {
value: boolean;
onChange(value: boolean): void;
text: string;
containerStyle?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
LeftIcon?: React.ReactNode;
}
export declare const SwitchRow: React.FC<SwitchRow>;
export {};
//# sourceMappingURL=SwitchRow.d.ts.map