@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
14 lines • 704 B
TypeScript
import * as React from 'react';
export interface SidebarProps extends React.HTMLProps<HTMLDivElement> {
children?: React.ReactNode;
/** Indicates the direction of the layout. Default orientation is stack on small screens, and split on medium screens and above. */
orientation?: 'stack' | 'split';
/** Indicates that the panel is displayed to the right of the content when the oritentation is split. */
isPanelRight?: boolean;
/** Adds space between the panel and content. */
hasGutter?: boolean;
/** Removes the background color. */
hasNoBackground?: boolean;
}
export declare const Sidebar: React.FunctionComponent<SidebarProps>;
//# sourceMappingURL=Sidebar.d.ts.map