UNPKG

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