import { observer } from "mobx-react"; import { Search } from "lucide-react"; // plane imports import { useTranslation } from "@plane/i18n"; // helpers import { cn } from "@plane/utils"; // hooks import { useAppTheme, useCommandPalette } from "@/hooks/store"; export const AppSearch = observer(() => { // store hooks const { sidebarCollapsed } = useAppTheme(); const { toggleCommandPaletteModal } = useCommandPalette(); // translation const { t } = useTranslation(); return ( ); });