import { SquarePen, MoreHorizontal, TimerReset } from "lucide-react" import { useTranslation } from "react-i18next" import { Dropdown, Switch } from "antd" import type { MenuProps } from "antd" import { useMessageOption } from "@/hooks/useMessageOption" type Props = { clearChat: () => void } export const NewChat: React.FC = ({ clearChat }) => { const { t } = useTranslation(["option", "common"]) const { temporaryChat, setTemporaryChat, messages } = useMessageOption() const items: MenuProps["items"] = [ { key: "1", label: ( ) } ] return (
) }