maxkb/ui/src/components/app-icon/ToolIcon.vue
shaohuzhang1 c631d775bf
feat: Add create MCP function (#3885)
Co-authored-by: wangdan-fit2cloud <dan.wang@fit2cloud.com>
2025-08-19 17:36:23 +08:00

22 lines
559 B
Vue

<template>
<el-avatar v-if="type == 'MCP'" shape="square" :size="size">
<img src="@/assets/workflow/icon_mcp.svg" style="width: 75%" alt="" />
</el-avatar>
<el-avatar v-else class="avatar-green" shape="square" :size="size">
<img src="@/assets/workflow/icon_tool.svg" style="width: 58%" alt="" />
</el-avatar>
</template>
<script setup lang="ts">
defineOptions({ name: 'ToolIcon' })
const props = defineProps({
type: {
type: [String, Number],
default: '',
},
size: {
type: [String, Number],
default: 32,
},
})
</script>