updating icon (#22485)

This commit is contained in:
znn
2025-07-17 12:40:36 +05:30
committed by GitHub
parent 4b604bd79a
commit 3cfba9e47b
19 changed files with 98 additions and 98 deletions

View File

@@ -9,8 +9,8 @@ import Wrap from './wrap'
import cn from '@/utils/classnames'
import PromptEditorHeightResizeWrap from '@/app/components/app/configuration/config-prompt/prompt-editor-height-resize-wrap'
import {
Clipboard,
ClipboardCheck,
Copy,
CopyCheck,
} from '@/app/components/base/icons/src/vender/line/files'
import useToggleExpend from '@/app/components/workflow/nodes/_base/hooks/use-toggle-expend'
import type { FileEntity } from '@/app/components/base/file-uploader/types'
@@ -92,10 +92,10 @@ const Base: FC<Props> = ({
<ActionButton className='ml-1' onClick={handleCopy}>
{!isCopied
? (
<Clipboard className='h-4 w-4 cursor-pointer' />
<Copy className='h-4 w-4 cursor-pointer' />
)
: (
<ClipboardCheck className='h-4 w-4' />
<CopyCheck className='h-4 w-4' />
)
}
</ActionButton>

View File

@@ -23,8 +23,8 @@ import ToggleExpandBtn from '@/app/components/workflow/nodes/_base/components/to
import useToggleExpend from '@/app/components/workflow/nodes/_base/hooks/use-toggle-expend'
import PromptEditor from '@/app/components/base/prompt-editor'
import {
Clipboard,
ClipboardCheck,
Copy,
CopyCheck,
} from '@/app/components/base/icons/src/vender/line/files'
import { useEventEmitterContextContext } from '@/context/event-emitter'
import { PROMPT_EDITOR_INSERT_QUICKLY } from '@/app/components/base/prompt-editor/plugins/update-block'
@@ -204,12 +204,12 @@ const Editor: FC<Props> = ({
{!isCopied
? (
<ActionButton onClick={handleCopy}>
<Clipboard className='h-4 w-4' />
<Copy className='h-4 w-4' />
</ActionButton>
)
: (
<ActionButton>
<ClipboardCheck className='h-4 w-4' />
<CopyCheck className='h-4 w-4' />
</ActionButton>
)
}

View File

@@ -9,8 +9,8 @@ import Modal from '@/app/components/base/modal'
import { BubbleX } from '@/app/components/base/icons/src/vender/line/others'
import CodeEditor from '@/app/components/workflow/nodes/_base/components/editor/code-editor'
import {
Clipboard,
ClipboardCheck,
Copy,
CopyCheck,
} from '@/app/components/base/icons/src/vender/line/files'
import { useStore } from '@/app/components/workflow/store'
import type {
@@ -122,10 +122,10 @@ const ConversationVariableModal = ({
<div className='flex items-center p-1'>
{!isCopied
? (
<Clipboard className='h-4 w-4 cursor-pointer text-text-tertiary' onClick={handleCopy} />
<Copy className='h-4 w-4 cursor-pointer text-text-tertiary' onClick={handleCopy} />
)
: (
<ClipboardCheck className='h-4 w-4 text-text-tertiary' />
<CopyCheck className='h-4 w-4 text-text-tertiary' />
)
}
</div>