react-native-expo-modal-select
Version:
Select component with a fullscreen modal
7 lines • 334 B
TypeScript
import type { Item } from '@/types';
import React from 'react';
import { type PressableProps } from 'react-native';
export type TouchableSelectItemProps = Item & PressableProps;
declare const SelectItem: ({ label, ...rest }: TouchableSelectItemProps) => React.JSX.Element;
export default SelectItem;
//# sourceMappingURL=Item.d.ts.map