UNPKG

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