UNPKG

react-native-reanimated-progress-bar

Version:

React Native animated progress bar, using react-native-reanimated

12 lines (11 loc) 311 B
import { FC } from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface Props { fill: string; current: number; total: number; style?: StyleProp<ViewStyle>; progressStyle?: StyleProp<ViewStyle>; } declare const AnimatedProgress: FC<Props>; export default AnimatedProgress;