import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/NotificationDrawer/notification-drawer'; import { css } from '@patternfly/react-styles'; export interface NotificationDrawerProps extends React.HTMLProps { /** Content rendered inside the notification drawer */ children?: React.ReactNode; /** Additional classes added to the notification drawer */ className?: string; /** @hide Forwarded ref */ innerRef?: React.Ref; } const NotificationDrawerBase: React.FunctionComponent = ({ children, className = '', innerRef, ...props }: NotificationDrawerProps) => (
{children}
); export const NotificationDrawer = React.forwardRef((props: NotificationDrawerProps, ref: React.Ref) => ( )); NotificationDrawer.displayName = 'NotificationDrawer';