maxkb/ui/src/workflow/icons/tool-lib-node-icon.vue
wangdan-fit2cloud d626601672 feat: common
2025-06-26 20:25:33 +08:00

26 lines
564 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_outlined.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>