UNPKG

react-autosize-container

Version:

React component that gives you feedback about container size (width & height)

12 lines (11 loc) 302 B
import React from 'react'; interface IBoxDimension { width: number; height: number; } interface IAutoSizerProps { style?: React.CSSProperties; children: (dimensions: IBoxDimension) => React.ReactElement; } export declare const AutoSize: React.FC<IAutoSizerProps>; export {};