UNPKG

@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.

16 lines 568 B
import React from 'react'; import type { StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { RadioInputProps } from './RadioInput'; interface RadioInputRowProps { text: string; selected: boolean; onChange(value: boolean): void; disabled?: boolean; radioSize?: RadioInputProps['size']; radioColor?: RadioInputProps['color']; textStyle?: StyleProp<TextStyle>; containerStyle?: StyleProp<ViewStyle>; } export declare const RadioInputRow: React.FC<RadioInputRowProps>; export {}; //# sourceMappingURL=RadioInputRow.d.ts.map