zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
23 lines (18 loc) • 477 B
TypeScript
import * as React from 'react';
interface GridItemProps {
slot?: string;
id?: string | number;
className?: string;
style?: React.CSSProperties;
children ?: any;
label?: string;
icon?: any;
to?: string;
onClick ?: (event?: any) => void;
key?: string;
ref?: React.MutableRefObject<{el: HTMLElement | null}>;
disabled?: boolean;
children?: React.ReactNode;
}
declare const GridItem: React.FunctionComponent<GridItemProps>;
export default GridItem;