react-native-ultimate-modal-picker
Version:
React Native Picker Component Library (Date, Time, DateTime, List, State)
13 lines (12 loc) • 399 B
TypeScript
import * as React from 'react';
import { ContainerStyle, LabelTextStyle } from '../../types/types';
interface Props {
mode: 'spinner' | 'default' | 'clock';
onChange: (date: Date) => void;
title?: string;
darkMode?: boolean;
customStyleContainer?: ContainerStyle;
customStyleLabelText?: LabelTextStyle;
}
declare const PickerTime: React.FC<Props>;
export default PickerTime;