mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
25 lines
865 B
TypeScript
25 lines
865 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Button from '@/app/components/base/button'
|
|
import s from './style.module.css'
|
|
|
|
export type IContrlBtnGroupProps = {
|
|
onSave: () => void
|
|
onReset: () => void
|
|
}
|
|
|
|
const ContrlBtnGroup: FC<IContrlBtnGroupProps> = ({ onSave, onReset }) => {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<div className="fixed bottom-0 left-[224px] h-[64px] w-[519px]">
|
|
<div className={`${s.ctrlBtn} flex h-full items-center gap-2 bg-white pl-4`}>
|
|
<Button variant="primary" onClick={onSave} data-testid="apply-btn">{t('appDebug.operation.applyConfig')}</Button>
|
|
<Button onClick={onReset} data-testid="reset-btn">{t('appDebug.operation.resetConfig')}</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(ContrlBtnGroup)
|