import { useId } from "react"; export function NextChatLogo( props: JSX.IntrinsicElements["svg"] & { inverted?: boolean } ) { const id = useId(); return ( ); } NextChatLogo.displayName = "DevGPT-logo";