UNPKG

@uiw/react-native

Version:
16 lines (15 loc) 469 B
import React from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; import { MarqueeProps } from './Marquee'; export declare type NoticeBarProps = { children?: any; mode?: string; onPress?: any; icon?: any; action?: any; textStyle?: StyleProp<TextStyle>; style?: StyleProp<ViewStyle>; marqueeProps?: MarqueeProps; }; declare const NoticeBar: (props: NoticeBarProps) => React.JSX.Element; export default NoticeBar;