| 
									
										
										
										
											2023-11-06 19:36:32 +08:00
										 |  |  | import { useTranslation } from 'react-i18next' | 
					
						
							|  |  |  | import { Webhooks } from '@/app/components/base/icons/src/vender/line/development' | 
					
						
							|  |  |  | import { BookOpen01 } from '@/app/components/base/icons/src/vender/line/education' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const Empty = () => { | 
					
						
							|  |  |  |   const { t } = useTranslation() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return ( | 
					
						
							|  |  |  |     <div className='mb-2 p-6 rounded-2xl bg-gray-50'> | 
					
						
							|  |  |  |       <div className='flex items-center justify-center mb-3 w-12 h-12 rounded-[10px] border border-[#EAECF5]'> | 
					
						
							|  |  |  |         <Webhooks className='w-6 h-6 text-gray-500' /> | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2023-11-06 20:29:41 +08:00
										 |  |  |       <div className='mb-2 text-sm text-gray-600'>{t('common.apiBasedExtension.title')}</div> | 
					
						
							| 
									
										
										
										
											2023-11-06 19:36:32 +08:00
										 |  |  |       <a | 
					
						
							|  |  |  |         className='flex items-center mb-2 h-[18px] text-xs text-primary-600' | 
					
						
							|  |  |  |         href={t('common.apiBasedExtension.linkUrl') || '/'} | 
					
						
							| 
									
										
										
										
											2024-02-02 15:24:17 +08:00
										 |  |  |         target='_blank' rel='noopener noreferrer' | 
					
						
							| 
									
										
										
										
											2023-11-06 19:36:32 +08:00
										 |  |  |       > | 
					
						
							|  |  |  |         <BookOpen01 className='mr-1 w-3 h-3' /> | 
					
						
							|  |  |  |         {t('common.apiBasedExtension.link')} | 
					
						
							|  |  |  |       </a> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default Empty |