import { Image, Skeleton } from '@chakra-ui/react'; import { useConfig } from '~/context'; import { useColorValue } from '~/hooks'; import type { ImageProps } from '@chakra-ui/react'; export const Logo = (props: ImageProps): JSX.Element => { const { web } = useConfig(); const { lightFormat, width } = web.logo; return ( {web.text.title} } {...props} /> ); };