| 12345678910111213141516171819202122232425262728293031323334 | import { RiBookOpenLine } from '@remixicon/react'import { useTranslation } from 'react-i18next'const InfoPanel = () => {  const { t } = useTranslation()  return (    <div className='flex w-[360px] flex-col items-start pb-2 pr-8 pt-[108px]'>      <div className='flex w-full min-w-[240px] flex-col items-start gap-3 self-stretch rounded-xl bg-background-section p-6'>        <div className='flex h-10 w-10 grow items-center justify-center gap-2 self-stretch rounded-lg border-[0.5px] border-components-card-border bg-components-card-bg p-1'>          <RiBookOpenLine className='h-5 w-5 text-text-accent' />        </div>        <p className='flex flex-col items-start gap-2 self-stretch'>          <span className='system-xl-semibold self-stretch text-text-secondary'>            {t('dataset.connectDatasetIntro.title')}          </span>          <span className='system-sm-regular text-text-tertiary'>            {t('dataset.connectDatasetIntro.content.front')}            <a className='system-sm-regular ml-1 text-text-accent' href='https://docs.dify.ai/guides/knowledge-base/external-knowledge-api-documentation' target='_blank' rel="noopener noreferrer">              {t('dataset.connectDatasetIntro.content.link')}            </a>            {t('dataset.connectDatasetIntro.content.end')}          </span>          <a className='system-sm-regular self-stretch text-text-accent' href='https://docs.dify.ai/guides/knowledge-base/connect-external-knowledge' target='_blank' rel="noopener noreferrer">            {t('dataset.connectDatasetIntro.learnMore')}          </a>        </p>      </div>    </div>  )}export default InfoPanel
 |