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

33 lines (32 loc) 879 B
/// <reference types="react" /> import { BaseComponent } from "../../commons"; declare type GridListItemProps = { index: number; title?: string; titleStyle?: object; secondaryTitle?: string; secondaryTitleStyle?: object; subtitle?: string; subtitleStyle?: object; onPress?: (...args: any[]) => any; height?: number; imageSource?: object; disabled?: boolean; }; /** THIS IS DEPRECATED */ /** * GridListItem component */ export default class GridListItem extends BaseComponent<GridListItemProps, {}> { static displayName: string; static defaultProps: any; generateStyles(): void; renderTop(): JSX.Element; renderBottom(): JSX.Element; renderImage(): JSX.Element; renderSecondaryTitle(): JSX.Element; renderTitle(): JSX.Element; renderSubtitle(): JSX.Element; render(): JSX.Element; } export {};