react-native-dates-picker
Version:
Customizable date picker for React Native
11 lines • 325 B
TypeScript
/// <reference types="react" />
import { type ViewStyle } from 'react-native';
interface WheelProps {
value: number;
setValue?: (value: number) => void;
items: string[];
indicatorStyle?: ViewStyle;
}
export default function Wheel(props: WheelProps): JSX.Element;
export {};
//# sourceMappingURL=Wheel.d.ts.map