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