maxkb/ui/src/workflow/icons/tool-lib-node-icon.vue
wangdan-fit2cloud 543210bc64 perf: perf
2025-07-09 02:58:16 +08:00

26 lines
555 B
Vue

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