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