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