@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
12 lines • 512 B
TypeScript
/// <reference types="react" />
export interface SidebarContentProps extends React.HTMLProps<HTMLDivElement> {
children: React.ReactNode;
/** Removes the background color. */
hasNoBackground?: boolean;
/** Adds padding to the content. */
hasPadding?: boolean;
/** Variant of the sidebar content background. */
backgroundVariant?: 'default' | 'secondary';
}
export declare const SidebarContent: React.FunctionComponent<SidebarContentProps>;
//# sourceMappingURL=SidebarContent.d.ts.map