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 (