UNPKG

react-native-calendars

Version:
12 lines (11 loc) 329 B
import React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; export interface NowIndicatorProps { styles: { [key: string]: ViewStyle | TextStyle; }; width: number; left: number; } declare const NowIndicator: (props: NowIndicatorProps) => React.JSX.Element; export default NowIndicator;