import React from 'react'; import { FormattedMessage as T } from 'components'; import { Classes, Icon, H4, Button } from '@blueprintjs/core'; import withDrawerActions from 'containers/Drawer/withDrawerActions'; import { compose } from 'utils'; /** * Drawer header content. */ function DrawerHeaderContent(props) { const { icon, title = , onClose, name, closeDrawer, } = props; if (title == null) { return null; } const handleClose = (event) => { closeDrawer(name); onClose && onClose(event); }; return (

{title}

); } export default compose(withDrawerActions)(DrawerHeaderContent);