import React, { FC } from 'react' import { Text, TouchableOpacity, View } from 'react-native' import s from './styles' import { IRadioButtonProps } from './types' const RadioButton: FC = ({ styles, text = 'Radio button', value = true, onValueChange, }) => ( {value && } {text} ) export default RadioButton