mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
23 lines
746 B
TypeScript
23 lines
746 B
TypeScript
import { Button } from '@langgenius/dify-ui/button'
|
|
import { RiArrowLeftLine } from '@remixicon/react'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Link from '@/next/link'
|
|
|
|
const Header = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className="relative flex px-16 pt-5 pb-2 system-md-semibold text-text-primary">
|
|
<span>{t(($) => $['creation.backToKnowledge'], { ns: 'datasetPipeline' })}</span>
|
|
<Link className="absolute bottom-0 left-5" href="/datasets" replace>
|
|
<Button variant="secondary-accent" className="size-9 rounded-full p-0">
|
|
<RiArrowLeftLine className="size-5" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Header)
|