fix: use StopCircle icon in variable inspect listening panel

This commit is contained in:
lyzno1 2025-10-02 09:56:51 +08:00
parent 937a58d0dd
commit 9643fa1c9a
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
import type { FC } from 'react'
import { useTranslation } from 'react-i18next'
import { RiStopLargeLine } from '@remixicon/react'
import Button from '@/app/components/base/button'
import BlockIcon from '@/app/components/workflow/block-icon'
import { BlockEnum } from '@/app/components/workflow/types'
import { StopCircle } from '@/app/components/base/icons/src/vender/line/mediaAndDevices'
export type ListeningProps = {
onStop: () => void
@ -32,7 +32,7 @@ const Listening: FC<ListeningProps> = ({
variant='primary'
onClick={onStop}
>
<RiStopLargeLine className='mr-1 size-4' />
<StopCircle className='mr-1 size-4' />
{t('workflow.debug.variableInspect.listening.stopButton')}
</Button>
</div>