omnipay-savings-sdk
Version:
Omnipay Savings SDK
11 lines (10 loc) • 327 B
TypeScript
import React, { JSX } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface RadioButtonProps {
label: string | JSX.Element;
selected: boolean;
onPress: () => void;
containerStyle?: StyleProp<ViewStyle>;
}
declare const RadioButton: React.FC<RadioButtonProps>;
export default RadioButton;