"use client";
import { ChatIcon } from "@repo/ui/icons";
import Image from "next/image";
import Link from "next/link";
import { usePathname } from "next/navigation";
import React from "react";
function NewChatButton() {
const path = usePathname();
if (path.startsWith("/chat")) {
return (
Start new chat
);
}
return null;
}
export default NewChatButton;