mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-18 02:36:56 +08:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: jyong <718720800@qq.com>
23 lines
894 B
TypeScript
23 lines
894 B
TypeScript
'use client'
|
|
import React, { type FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { Microphone01 } from '@/app/components/base/icons/src/vender/solid/mediaAndDevices'
|
|
|
|
const SpeechToTextConfig: FC = () => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className='flex items-center px-3 h-12 bg-gray-50 rounded-xl overflow-hidden'>
|
|
<div className='shrink-0 flex items-center justify-center mr-1 w-6 h-6'>
|
|
<Microphone01 className='w-4 h-4 text-[#7839EE]' />
|
|
</div>
|
|
<div className='shrink-0 mr-2 flex items-center whitespace-nowrap text-sm text-gray-800 font-semibold'>
|
|
<div>{t('appDebug.feature.speechToText.title')}</div>
|
|
</div>
|
|
<div className='grow'></div>
|
|
<div className='text-xs text-gray-500'>{t('appDebug.feature.speechToText.resDes')}</div>
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(SpeechToTextConfig)
|