dify/web/app/components/datasets/documents/create-from-pipeline/process-documents/actions.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

31 lines
935 B
TypeScript

import { Button } from '@langgenius/dify-ui/button'
import { RiArrowLeftLine } from '@remixicon/react'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
type ActionsProps = {
onBack: () => void
runDisabled?: boolean
onProcess: () => void
}
const Actions = ({ onBack, runDisabled, onProcess }: ActionsProps) => {
const { t } = useTranslation()
return (
<div className="flex items-center justify-between">
<Button variant="secondary" onClick={onBack} className="gap-x-0.5">
<RiArrowLeftLine className="size-4" />
<span className="px-0.5">
{t(($) => $['operations.dataSource'], { ns: 'datasetPipeline' })}
</span>
</Button>
<Button variant="primary" disabled={runDisabled} onClick={onProcess}>
{t(($) => $['operations.saveAndProcess'], { ns: 'datasetPipeline' })}
</Button>
</div>
)
}
export default React.memo(Actions)