/** * WordPress dependencies */ import { VisuallyHidden } from '@wordpress/components'; import { PinnedItems } from '@wordpress/interface'; import { __ } from '@wordpress/i18n'; import { useViewportMatch } from '@wordpress/compose'; /** * Internal dependencies */ import { COMPLEMENTARY_AREA_SCOPE } from '../../lib/constants'; import SaveButton from './save-button'; import './styles.scss'; /** * Component for showing the Gutenberg-style header. * * @returns {Element} component instance */ function Header() { const isMediumViewport = useViewportMatch( 'medium' ); return (