UNPKG

react-native-timer-picker

Version:

A simple, flexible, performant duration picker for React Native apps 🔥 Great for timers, alarms and duration inputs ⏰🕰️⏳ Includes iOS-style haptic and audio feedback 🍏

15 lines (14 loc) 450 B
import React from "react"; import type { generateStyles } from "../TimerPicker/styles"; interface PickerItemProps { adjustedLimitedMax: number; adjustedLimitedMin: number; allowFontScaling: boolean; amLabel?: string; is12HourPicker?: boolean; item: string; pmLabel?: string; styles: ReturnType<typeof generateStyles>; } declare const PickerItem: React.NamedExoticComponent<PickerItemProps>; export default PickerItem;