import React, { FC } from 'react'; import type { ResponsiveValue } from '@shopify/restyle'; import type { Animated } from 'react-native'; import { AnimatedBox } from '../Box'; import type { Theme } from '../../theme/theme'; export const LoadingDot: FC<{ colorDot?: ResponsiveValue; index: number; count: number; progress: Animated.Value; size?: 'normal' | 'small'; }> = ({ colorDot = 'green', count, progress, index, size = 'normal' }) => { return ( ); };