mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { useTranslation } from 'react-i18next'
 | |
| import { Notion } from '../icons/src/public/common'
 | |
| import { Icon3Dots } from '../icons/src/vender/line/others'
 | |
| import Button from '../button'
 | |
| import React from 'react'
 | |
| 
 | |
| type NotionConnectorProps = {
 | |
|   onSetting: () => void
 | |
| }
 | |
| 
 | |
| const NotionConnector = ({ onSetting }: NotionConnectorProps) => {
 | |
|   const { t } = useTranslation()
 | |
| 
 | |
|   return (
 | |
|     <div className='flex flex-col items-start rounded-2xl bg-workflow-process-bg p-6'>
 | |
|       <div className='mb-2 h-12 w-12 rounded-[10px] border-[0.5px] border-components-card-border p-3 shadow-lg shadow-shadow-shadow-5'>
 | |
|         <Notion className='size-6' />
 | |
|       </div>
 | |
|       <div className='mb-1 flex flex-col gap-y-1 pb-3 pt-1'>
 | |
|         <span className='system-md-semibold text-text-secondary'>
 | |
|           {t('datasetCreation.stepOne.notionSyncTitle')}
 | |
|           <Icon3Dots className='relative -left-1.5 -top-2.5 inline h-4 w-4 text-text-secondary' />
 | |
|         </span>
 | |
|         <div className='system-sm-regular text-text-tertiary'>{t('datasetCreation.stepOne.notionSyncTip')}</div>
 | |
|       </div>
 | |
|       <Button className='h-8' variant='primary' onClick={onSetting}>{t('datasetCreation.stepOne.connect')}</Button>
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default React.memo(NotionConnector)
 | 
