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, onCancel: () => void } const Alert = (props: Props) => { const { open, title, content, onClose, onAccept, } = props const theme = useTheme(); const [, t] = useLanguage(); return ( onClose()} showCancelButton={!!props.onCancel} onConfirmPressed={() => onAccept()} /> ) } export default Alert;