import * as React from 'react'; import AwesomeAlert from 'react-native-awesome-alerts'; import { getTraduction } from '../utils'; import { useLanguage } from 'ordering-components/native'; import { useTheme } from 'styled-components/native'; interface Props { open: boolean; title: string; content: Array; onClose: () => void; onAccept: () => void; } const Alert = (props: Props) => { const { open, title, content, onClose, onAccept } = props; const theme = useTheme(); const [, t] = useLanguage(); return ( onClose()} onConfirmPressed={() => onAccept()} /> ); }; export default Alert;