aboutsummaryrefslogtreecommitdiff
path: root/src/components/MenuIconItem.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/MenuIconItem.vue')
-rw-r--r--src/components/MenuIconItem.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/MenuIconItem.vue b/src/components/MenuIconItem.vue
index 0909e56..a08fe24 100644
--- a/src/components/MenuIconItem.vue
+++ b/src/components/MenuIconItem.vue
@@ -6,11 +6,11 @@
</template>
<script setup lang="ts">
-import type { ITool } from '@/tools/tool';
+import type { Tool } from '@/tools/tools.types';
import { useThemeVars } from 'naive-ui';
import { toRefs } from 'vue';
-const props = defineProps<{ tool: ITool }>();
+const props = defineProps<{ tool: Tool }>();
const { tool } = toRefs(props);
const theme = useThemeVars();