import React from 'react'; import { BlurView } from '@react-native-community/blur'; import { View } from 'react-native'; import styles from '../styles'; import RCActivityIndicator from '../../ActivityIndicator'; import { CustomIcon } from '../../CustomIcon'; import { useTheme } from '../../../theme'; const BlurComponent = ({ loading = false }: { loading: boolean }) => { const { theme, colors } = useTheme(); return ( <> {loading ? : } ); }; export default BlurComponent;