File size: 769 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
'use client'
import React, { type FC } from 'react'
import { useTranslation } from 'react-i18next'
import Panel from '@/app/components/app/configuration/base/feature-panel'
import { Citations } from '@/app/components/base/icons/src/vender/solid/editor'

const Citation: FC = () => {
  const { t } = useTranslation()

  return (
    <Panel

      title={

        <div className='flex items-center gap-2'>

          <div>{t('appDebug.feature.citation.title')}</div>

        </div>

      }

      headerIcon={<Citations className='w-4 h-4 text-[#FD853A]' />}

      headerRight={

        <div className='text-xs text-gray-500'>{t('appDebug.feature.citation.resDes')}</div>

      }

      noBodySpacing

    />
  )
}
export default React.memo(Citation)