UNPKG

923 BTypeScriptView Raw
1import * as React from 'react';
2export interface PageGroupProps extends React.HTMLProps<HTMLDivElement> {
3 /** Additional classes to apply to the PageGroup */
4 className?: string;
5 /** Content rendered inside of the PageGroup */
6 children?: React.ReactNode;
7 /** Modifier indicating if PageGroup is sticky to the top or bottom */
8 sticky?: 'top' | 'bottom';
9 /** Modifier indicating if PageGroup should have a shadow at the top */
10 hasShadowTop?: boolean;
11 /** Modifier indicating if PageGroup should have a shadow at the bottom */
12 hasShadowBottom?: boolean;
13 /** Flag indicating if the PageGroup has a scrolling overflow */
14 hasOverflowScroll?: boolean;
15}
16export declare const PageGroup: {
17 ({ className, children, sticky, hasShadowTop, hasShadowBottom, hasOverflowScroll, ...props }: PageGroupProps): JSX.Element;
18 displayName: string;
19};
20//# sourceMappingURL=PageGroup.d.ts.map
\No newline at end of file