import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Drawer/drawer'; import { css } from '@patternfly/react-styles'; /** Provides a description within the drawer panel. This should typically follow the drawer head. */ export interface DrawerPanelDescriptionProps extends React.HTMLProps { /** Additional classes added to the drawer description. */ className?: string; /** Content to be rendered in the drawer description */ children: React.ReactNode; } export const DrawerPanelDescription: React.FunctionComponent = ({ className, children, ...props }: DrawerPanelDescriptionProps) => (
{children}
); DrawerPanelDescription.displayName = 'DrawerPanelDescription';