'use client' import { Button } from '@/components/ui/button' import Icon from '@/components/ui/icon' import useChatActions from '@/hooks/useChatActions' import { usePlaygroundStore } from '@/store' function NewChatButton() { const { clearChat } = useChatActions() const { messages } = usePlaygroundStore() return ( ) } export default NewChatButton