UNPKG

react-native-images-picker-expo

Version:

Images picker browser which enables user to select more than one image at a time from the device media library.

9 lines (8 loc) 280 B
import React from 'react'; interface ImageTileProps { uri: string; selectImage: () => void; isSelected: boolean; } declare const ImageTile: React.MemoExoticComponent<({ uri, selectImage, isSelected }: ImageTileProps) => JSX.Element>; export default ImageTile;