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