Files
icehrm/web/node_modules/rc-virtual-list/lib/Filler.d.ts
2020-05-20 18:47:29 +02:00

15 lines
441 B
TypeScript

import * as React from 'react';
interface FillerProps {
prefixCls?: string;
/** Virtual filler height. Should be `count * itemMinHeight` */
height: number;
/** Set offset of visible items. Should be the top of start item position */
offset?: number;
children: React.ReactNode;
}
/**
* Fill component to provided the scroll content real height.
*/
declare const Filler: React.FC<FillerProps>;
export default Filler;