import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Drawer/drawer'; import { css } from '@patternfly/react-styles'; export interface DrawerMainProps extends React.HTMLProps { /** Additional classes added to the drawer main wrapper. */ className?: string; /** Content to be rendered in the drawer main wrapper*/ children?: React.ReactNode; } export const DrawerMain: React.FunctionComponent = ({ className = '', children, ...props }: DrawerMainProps) => (
{children}
); DrawerMain.displayName = 'DrawerMain';