import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Drawer/drawer'; import { css } from '@patternfly/react-styles'; export interface DrawerActionsProps extends React.HTMLProps { /** Additional classes added to the drawer actions button. */ className?: string; /** Actions to be rendered in the panel head. */ children?: React.ReactNode; } export const DrawerActions: React.FunctionComponent = ({ className = '', children, ...props }: DrawerActionsProps) => (
{children}
); DrawerActions.displayName = 'DrawerActions';