UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

22 lines (21 loc) 695 B
/// <reference types="react" /> import { BaseComponent } from "../../commons"; declare type ProgressBarProps = { height?: number; backgroundColor?: string; progressBackgroundColor?: string; }; /** * @description: Animated progress bar * @gif:https://media.giphy.com/media/3o752o08oY0oCvOxR6/giphy.gif * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/animationScreens/ProgressBarScreen.js */ export default class ProgressBar extends BaseComponent<ProgressBarProps, {}> { static displayName: string; static defaultProps: { backgroundColor: any; progressBackgroundColor: any; }; render(): JSX.Element; } export {};