UnisKB/ui/src/workflow/icons/tool-lib-node-icon.vue

26 lines
555 B
Vue
Raw Normal View History

2025-06-03 08:08:49 +00:00
<template>
2025-06-05 09:28:07 +00:00
<el-avatar
2025-06-03 08:08:49 +00:00
v-if="isAppIcon(item?.icon)"
shape="square"
:size="32"
style="background: none"
class="mr-8"
>
<img :src="item?.icon" alt="" />
2025-06-05 09:28:07 +00:00
</el-avatar>
<el-avatar v-else shape="square" style="background: #34c724">
2025-07-08 18:58:16 +00:00
<img src="@/assets/workflow/icon_tool.svg" style="width: 75%" alt="" />
2025-06-05 09:28:07 +00:00
</el-avatar>
2025-06-03 08:08:49 +00:00
</template>
<script setup lang="ts">
import { isAppIcon } from '@/utils/common'
const props = defineProps<{
item?: {
name: string
icon: string
}
}>()
</script>
<script setup lang="ts"></script>