import { Box, ActionButton } from '@rocket.chat/fuselage'; import React from 'react'; const Header = ({ title, onClose, children = undefined, ...props }) => ( {(title || onClose) && ( {title && ( {title} )} {onClose && } )} {children} ); export default Header;