import { Text, TouchableOpacity, View } from 'react-native';
import { useTranslation } from 'react-i18next';
import { Ionicons } from '@expo/vector-icons';
import { useColors } from '../../../lib/theme';
import { OnboardingShell } from '../OnboardingShell';
import { LyraBubble } from '../LyraBubble';
export function DigaChoiceSlide({
onYes,
onNo,
current,
total,
}: {
onYes: () => void;
onNo: () => void;
current: number;
total: number;
}) {
const { t } = useTranslation();
const colors = useColors();
return (
}
>
{t('onboarding.diga_choice.hint')}
);
}
function ChoiceBar({
onYes,
onNo,
t,
colors,
}: {
onYes: () => void;
onNo: () => void;
t: ReturnType['t'];
colors: import('../../../lib/theme').ColorScheme;
}) {
return (
{t('onboarding.diga_choice.cta_yes')}
{t('onboarding.diga_choice.cta_no')}
);
}