import { Box, HStack } from '../elements/LayoutPrimitives' import { OmnivoreNameLogo } from '../elements/images/OmnivoreNameLogo' import { UserBasicData } from '../../lib/networking/queries/useGetViewerQuery' import { PrimaryDropdown } from '../templates/PrimaryDropdown' import { HEADER_HEIGHT } from '../templates/homeFeed/HeaderSpacer' import { LogoBox } from '../elements/LogoBox' type HeaderProps = { user?: UserBasicData } export function SettingsHeader(props: HeaderProps): JSX.Element { return ( ) }