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