import { Text, 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';
import { CTABar } from '../CTABar';
export function PrivacySlide({
onNext,
current,
total,
}: {
onNext: () => void;
current: number;
total: number;
}) {
const { t } = useTranslation();
const colors = useColors();
return (
}
>
);
}
function PromiseRow({
icon,
text,
colors,
}: {
icon: keyof typeof Ionicons.glyphMap;
text: string;
colors: import('../../../lib/theme').ColorScheme;
}) {
return (
{text}
);
}