import React from 'react' import { View, ActivityIndicator, ViewProps } from 'react-native' import Text from './ui/Text' interface PaginationLoaderProps extends ViewProps { text?: string color?: string } export default function PaginationLoader({ text, color = '#F5F5F5', testID, ...props }: PaginationLoaderProps) { return ( {text && {text}} ) }