import type { FC } from 'react' import { RiEqualizer2Line } from '@remixicon/react' import { CubeOutline } from '@/app/components/base/icons/src/vender/line/shapes' import cn from '@/utils/classnames' import { useTranslation } from 'react-i18next' type ModelTriggerProps = { open: boolean className?: string } const ModelTrigger: FC = ({ open, className, }) => { const { t } = useTranslation() return (
{t('plugin.detailPanel.configureModel')}
) } export default ModelTrigger