() => (
<NavigationBar>
<Stack direction="row" align="center" justify="center">
<ButtonLink href="https://orbit.kiwi">
<div
style={{
maxWidth: "40px",
overflow: "hidden",
}}
>
<img
src="https://orbit.kiwi/files/2019/08/cropped-OrbitLogo-1.png"
alt="Orbit by Kiwi.com"
height="40px"
/>
</div>
</ButtonLink>
<ButtonLink
type="secondary"
iconLeft={<AirplaneTakeoff />}
title="Travel"
/>
<ButtonLink type="secondary" iconLeft={<Accommodation />} title="Rooms" />
<ButtonLink type="secondary" iconLeft={<Partners />} title="Careers" />
<Stack justify="end" inline>
<ButtonLink
type="secondary"
iconLeft={<CountryFlag code="gb" />}
title="English"
/>
<ButtonLink
type="secondary"
iconLeft={<QuestionCircle />}
title="Help"
/>
<ButtonLink
type="secondary"
iconLeft={<AccountCircle />}
title="My account"
/>
</Stack>
</Stack>
</NavigationBar>
);