import * as React from 'react' import { useTranslation } from 'react-i18next' import { DialogDescription, DialogTitle } from '@/app/components/base/ui/dialog' import { cn } from '@/utils/classnames' import Button from '../../base/button' import DifyLogo from '../../base/logo/dify-logo' import styles from './header.module.css' type HeaderProps = { onClose: () => void } const Header = ({ onClose, }: HeaderProps) => { const { t } = useTranslation() return (