You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
441 B
15 lines
441 B
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;
|