import useMobileScreen from "@/app/hooks/useMobileScreen"; import BotIcon from "@/app/icons/bot.svg"; import LoadingIcon from "@/app/icons/three-dots.svg"; import { getCSSVar } from "@/app/utils"; export default function Loading({ noLogo, useSkeleton = true, }: { noLogo?: boolean; useSkeleton?: boolean; }) { let theme; if (typeof window !== "undefined") { theme = getCSSVar("--chat-panel-bg"); } const isMobileScreen = useMobileScreen(); return (
{!noLogo && }
); }