UNPKG

@retailmenot/anchor

Version:

A React UI Library by RetailMeNot

19 lines (18 loc) 715 B
import * as React from 'react'; export declare const DEFAULT_HEADER_HEIGHT = "1.5rem"; export declare const DEFAULT_FOOTER_HEIGHT = "20.375rem"; interface PageProps extends React.HTMLAttributes<HTMLDivElement> { /** The header of the website. This can be a component. */ header?: any; /** The footer of the website. This can be a component. */ footer?: any; /** The height of the header. It will not hide on overflow. */ headerHeight?: string; /** The height of the footer. It will not hide on overflow. */ footerHeight?: string; /** Additional classname. */ className?: string; children?: any; } export declare const Page: React.FunctionComponent<PageProps>; export {};