import { FC } from 'react'; import { Branding, type BrandingProps } from '../../molecules'; import { Toolbar, type ToolbarProps } from '../toolbar'; import styles from './header.module.scss'; export type HeaderProps = BrandingProps & Pick< ToolbarProps, 'ackeeStorageKey' | 'motionStorageKey' | 'nav' | 'searchPage' > & { /** * Set additional classnames to the header element. */ className?: string; }; /** * Header component * * Render the website header. */ export const Header: FC = ({ ackeeStorageKey, className, motionStorageKey, nav, searchPage, ...props }) => { return (
); };