import * as React from 'react'; import { css } from '@breakaway/react-styles'; export interface NotificationDrawerListProps extends React.HTMLProps { /** Content rendered inside the notification drawer list body */ children?: React.ReactNode; /** Additional classes added to the notification drawer list body */ className?: string; /** Adds styling to the notification drawer list to indicate expand/hide state */ isHidden?: boolean; } export const NotificationDrawerList: React.FunctionComponent = ({ children, className = '', isHidden = false, ...props }: NotificationDrawerListProps) => ( ); NotificationDrawerList.displayName = 'NotificationDrawerList';