'use client' import React from 'react' import { useTranslation } from 'react-i18next' import { RiArrowDownSLine, } from '@remixicon/react' import AppIcon from '@/app/components/base/app-icon' import type { App } from '@/types/app' import cn from '@/utils/classnames' type Props = { open: boolean appDetail?: App } const AppTrigger = ({ open, appDetail, }: Props) => { const { t } = useTranslation() return (