react-native-rolling-bar
Version:
Rolling bar (banner) UI for React Native
13 lines (12 loc) • 350 B
TypeScript
import React from 'react';
import { ViewStyle, StyleProp } from 'react-native';
declare type Props = {
interval: number;
customStyle?: StyleProp<ViewStyle>;
animationDuration?: number;
delayBetween?: number;
defaultStyle?: boolean;
forceRoll?: boolean;
};
declare const RollingBar: React.FC<Props>;
export default RollingBar;