mirror of
https://github.com/langgenius/dify.git
synced 2025-07-16 13:50:18 +00:00
30 lines
758 B
TypeScript
30 lines
758 B
TypeScript
import React from 'react'
|
|
import { RiArrowLeftLine } from '@remixicon/react'
|
|
import Button from '../../base/button'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Link from 'next/link'
|
|
|
|
const Header = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className='system-md-semibold relative flex px-16 pb-2 pt-5 text-text-primary'>
|
|
<span>{t('datasetPipeline.creation.title')}</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)
|