"use client"
import { type HTMLChakraProps, chakra } from "@chakra-ui/react"
import { useId } from "react"
export const Logo = (props: HTMLChakraProps<"svg">) => {
const id = useId()
return (
)
}
export const LogoIcon = (props: HTMLChakraProps<"svg">) => {
const id = useId()
return (
)
}
export const LogoBlitzIcon = (props: HTMLChakraProps<"svg">) => {
return (
)
}