mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-30 18:15:15 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
33 lines
797 B
TypeScript
33 lines
797 B
TypeScript
import React, { type FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import classNames from '@/utils/classnames'
|
|
import Checkbox from '@/app/components/base/checkbox'
|
|
|
|
type AddAnotherProps = {
|
|
className?: string
|
|
isChecked: boolean
|
|
onCheck: () => void
|
|
}
|
|
|
|
const AddAnother: FC<AddAnotherProps> = ({
|
|
className,
|
|
isChecked,
|
|
onCheck,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className={classNames('flex items-center gap-x-1 pl-1', className)}>
|
|
<Checkbox
|
|
key='add-another-checkbox'
|
|
className='shrink-0'
|
|
checked={isChecked}
|
|
onCheck={onCheck}
|
|
/>
|
|
<span className='system-xs-medium text-text-tertiary'>{t('datasetDocuments.segment.addAnother')}</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AddAnother)
|