UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

25 lines (24 loc) 606 B
/// <reference types="react" /> import GridListItem from "./GridListItem"; /** THIS IS DEPRECATED */ /** * GridListNewItem component */ export default class GridListNewItem extends GridListItem { static displayName: string; static propTypes: { index: any; imageSource: any; imageSize: any; title: any; titleStyle: any; onPress: any; height: any; }; static defaultProps: any; generateStyles(): void; renderTop(): JSX.Element; renderBottom(): JSX.Element; renderImage(): JSX.Element; renderTitle(): JSX.Element; }