react-native-calendars
Version:
React Native Calendar Components
12 lines (11 loc) • 329 B
TypeScript
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;