import * as React from 'react'; import {ActivityIndicator, Subheading, withTheme} from 'react-native-paper'; import {View} from "react-native"; import {MaterialCommunityIcons} from "@expo/vector-icons"; function EmptyWebSectionListItem(props) { const { colors } = props.theme; return ( {props.refreshing ? : } {props.text} ); } export default withTheme(EmptyWebSectionListItem);