mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-05 05:32:02 +00:00
12 lines
205 B
Vue
12 lines
205 B
Vue
<template>
|
|
<i :class="icon" class="text-xs text-neutral" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { NavItemData } from '@/types/navTypes'
|
|
|
|
defineProps<{
|
|
icon: NavItemData['icon']
|
|
}>()
|
|
</script>
|