UNPKG

@bee-design/ui

Version:

Bee Design React UI Library.

15 lines (14 loc) 387 B
import * as React from 'react'; interface FillerProps { /** Total height of list */ height: number; /** offset value of the first element of the viewport */ offset?: number; outerStyle?: React.CSSProperties; children: React.ReactNode; } /** * Create visual height for content */ declare const Filler: React.FC<FillerProps>; export default Filler;