import React from 'react' import ResizeContext from '../utils/context' import type { MainNavigationLogoProps } from './utils' import { asProductLogo } from './utils' import { AdaptiveWorkDefaultLight, AdaptiveWorkSymbolLight } from './components' const Logo = (props: React.ComponentPropsWithoutRef<'svg'>) => { const { shouldDisplay } = React.useContext(ResizeContext) const compact = shouldDisplay('tablet-landscape') return compact ? ( ) : ( ) } export const LogoAdaptiveWork: React.ElementType = asProductLogo(Logo)