package.src.components.Drawer.DrawerContent.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react-core Show documentation
Show all versions of react-core Show documentation
This library provides a set of common React components for use with the PatternFly reference implementation.
The newest version!
import * as React from 'react';
import styles from '@patternfly/react-styles/css/components/Drawer/drawer';
import { css } from '@patternfly/react-styles';
import { DrawerMain } from './DrawerMain';
import { DrawerColorVariant, DrawerContext } from './Drawer';
export interface DrawerContentProps extends React.HTMLProps {
/** Additional classes added to the Drawer. */
className?: string;
/** Content to be rendered in the drawer. */
children?: React.ReactNode;
/** Content rendered in the drawer panel. */
panelContent: React.ReactNode;
/** Color variant of the background of the drawer panel */
colorVariant?: DrawerColorVariant | 'light-200' | 'no-background' | 'default';
}
export const DrawerContent: React.FunctionComponent = ({
// eslint-disable-next-line @typescript-eslint/no-unused-vars
className = '',
children,
panelContent,
colorVariant = DrawerColorVariant.default,
...props
}: DrawerContentProps) => {
const { drawerContentRef } = React.useContext(DrawerContext);
return (
{children}
{panelContent}
);
};
DrawerContent.displayName = 'DrawerContent';