@quidone/react-native-wheel-picker
Version:
Picker is a UI component for selecting an item from a list of options.
14 lines • 572 B
TypeScript
import React from 'react';
import { StyleProp, TextStyle } from 'react-native';
import type { RenderItem } from '../types';
import type { Faces } from './faces';
type PickerItemContainerProps = {
item: any;
index: number;
faces: ReadonlyArray<Faces>;
renderItem: RenderItem<any>;
itemTextStyle: StyleProp<TextStyle> | undefined;
};
declare const _default: React.MemoExoticComponent<({ index, item, faces, renderItem, itemTextStyle, }: PickerItemContainerProps) => JSX.Element>;
export default _default;
//# sourceMappingURL=PickerItemContainer.d.ts.map