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