@sms-frontend/components
Version:
SMS Design React UI Library.
14 lines (13 loc) • 335 B
TypeScript
import * as React from 'react';
interface FillerProps {
/** Total height of list */
height: number;
/** offset value of the first element of the viewport */
offset?: number;
children: React.ReactNode;
}
/**
* Create visual height for content
*/
declare const Filler: React.FC<FillerProps>;
export default Filler;