UNPKG

@janiscommerce/ui-native

Version:
12 lines (11 loc) 293 B
import { FC } from 'react'; import { ViewStyle } from 'react-native'; interface ProgressBarProps { value: number; totalValue: number; isAnimated?: boolean; duration?: number; style?: ViewStyle; } declare const ProgressBar: FC<ProgressBarProps>; export default ProgressBar;