// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {ActivityIndicator, type StyleProp, View, type ViewStyle, Text, type TextStyle, type ColorValue} from 'react-native'; import {useTheme} from '@context/theme'; type LoadingProps = { containerStyle?: StyleProp; size?: number | 'small' | 'large'; color?: ColorValue; themeColor?: keyof Theme; footerText?: string; footerTextStyles?: TextStyle; testID?: string; } const Loading = ({ containerStyle, size, color, themeColor, footerText, footerTextStyles, testID, }: LoadingProps) => { const theme = useTheme(); const indicatorColor = themeColor ? theme[themeColor] : color; return ( { footerText && {footerText} } ); }; export default Loading;