import React from 'react'; import { View, Text, TouchableOpacity, Image } from 'react-native'; import { PaymentOptionProps } from './paymentOption.props'; import { getStyles } from './paymentOption.styles'; import { useAppTheme } from '@theme'; export const PaymentOption: React.FC = ({ label, isSelected, icon, onSelect, }) => { const { colors } = useAppTheme(); const styles = getStyles(colors); // console.log(icon); return ( {label} {isSelected && } ); };