import { Box, HTMLChakraProps, useColorModeValue } from "@chakra-ui/react"
import Link from "next/link"
import React from "react"
export const Logo = (props) => {
const fill = useColorModeValue("#151618", "#fff")
return (
)
}
export const LogoIcon = (props: HTMLChakraProps<"svg">) => {
const fill = useColorModeValue("#151618", "#fff")
return (
)
}
export default Logo