import { useI18n } from 'domains/i18n/hooks' import { className } from 'lib/css' import { useRef } from 'preact/hooks' import { useSeamlyStateContext } from 'ui/hooks/seamly-hooks' import Icon from './icon' const Header = ({ children, onCloseChat }) => { const { headerCollapseButtonId } = useSeamlyStateContext() const closeButton = useRef(null) const { t } = useI18n() return (
{children}
) } export default Header