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