import React, {FC} from 'react'; import {Modal} from 'react-native'; import CameraIcon from '@assets/svg/CameraIcon'; import { Overlay, ModalBody, ButtonWrapper, AllowButton, DontAllowButton, Title, SubTitle, } from '@styles/screens/scan'; const Permission: FC<{open: boolean; deny: () => void; allow: () => void}> = ({ open, deny, allow, }) => ( Asli wallet would like to access the camera. Asli wallet uses the camera to scan the QR codes. ); export default Permission;