wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { useTranslation } from 'react-i18next'
import { ChatBotSlim } from '@/app/components/base/icons/src/vender/line/communication'
 
const Empty = () => {
  const { t } = useTranslation()
 
  return (
    <div className='absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2'>
      <div className='flex justify-center mb-2'>
        <ChatBotSlim className='w-12 h-12 text-gray-300' />
      </div>
      <div className='w-[256px] text-center text-[13px] text-gray-400'>
        {t('workflow.common.previewPlaceholder')}
      </div>
    </div>
  )
}
 
export default Empty