Nothing here
\n}\n\nexport default SilentRenew\n","import styled from '@emotion/styled'\nimport { css } from '@emotion/react'\nimport { styles } from 'shared/constants/styles'\n\nexport const Wrapper = styled.header`\n display: flex;\n justify-content: space-between;\n height: 70px;\n position: sticky;\n z-index: 1000;\n top: 0;\n transition: background-color 0.2s ease-in-out;\n`\n\nexport const backgroundStyle = css`\n background-color: white;\n`\n\nexport const Content = styled.div`\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: ${styles.maxWidth};\n margin: 0 auto;\n padding: 0 1em;\n width: 100%;\n\n @media screen and (max-width: 1170px) {\n padding: 0 1em;\n }\n`\n\nexport const RightWrapper = styled.div`\n display: flex;\n align-items: center;\n & > *:nth-of-type(1) {\n margin-right: 1em;\n }\n`\n","/** @jsxImportSource @emotion/react */\nimport React from 'react'\nimport { UserMenu, UserMenuOption, Button } from '@bbl-digital/snorre'\nimport { IUser } from 'shared/models/User'\n\ninterface IProps {\n user: IUser\n onLogout: () => void\n onGoToProfile: () => void\n}\n\nconst User: React.FC