import { useTranslation } from "react-i18next"; import { Button } from "@components/Button"; import { cx } from "@/cva.config"; import { AvailableSidebarViews } from "@/hooks/stores"; export default function SidebarHeader({ title, setSidebarView, }: { title: string; setSidebarView: (view: AvailableSidebarViews | null) => void; }) { const { t } = useTranslation(); return (