import React from 'react'; import { TouchableOpacity } from 'react-native'; import { Box } from '../Box'; import { colors, fonts } from '../../theme/theme'; import { Text } from '../Text'; import { ArrowLeft, ArrowRight } from 'phosphor-react-native'; import { Normalize } from '../../utils/normalize'; import type { IOnBoardingFooterProps } from './onboarding'; export const Footer = ({ handlePrev, handleNext, handleFinish, currentSlideIndex, totalSlides, }: IOnBoardingFooterProps) => { return ( {currentSlideIndex + 1 === totalSlides ? ( Comencemos ) : ( Continuar )} ); };