import React from 'react'; import { View } from 'react-native'; import Button from '../Button'; import { useTheme } from '../../theme'; import styles from './styles'; const FooterButtons = ({ cancelAction = () => {}, confirmAction = () => {}, cancelTitle = '', confirmTitle = '', disabled = false, cancelBackgroundColor = '', confirmBackgroundColor = '' }): React.ReactElement => { const { colors } = useTheme(); return (