diff options
Diffstat (limited to 'src/components/ToolCard.vue')
-rw-r--r-- | src/components/ToolCard.vue | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index 75c6085..bceaf15 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -15,7 +15,6 @@ <script setup lang="ts"> import type { ITool } from '@/tools/Tool'; import { toRefs, defineProps } from 'vue'; -import { ArrowRight } from '@vicons/tabler' const props = defineProps<{ tool: ITool & { category: string } }>() const { tool } = toRefs(props) |