aboutsummaryrefslogtreecommitdiff
path: root/src/components/ToolCard.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-06 00:49:32 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-06 00:49:32 +0200
commitf70fce65e20989eb19b0f0976e756a43edf02e9d (patch)
tree692b3e4718ad8ca0eecc5d2307dcbeeba62a37df /src/components/ToolCard.vue
parent57fd14a199a253f49f3c53810490e5d31512b261 (diff)
downloadit-tools-f70fce65e20989eb19b0f0976e756a43edf02e9d.tar.gz
it-tools-f70fce65e20989eb19b0f0976e756a43edf02e9d.tar.zst
it-tools-f70fce65e20989eb19b0f0976e756a43edf02e9d.zip
refactor(page): removed unused import
Diffstat (limited to 'src/components/ToolCard.vue')
-rw-r--r--src/components/ToolCard.vue1
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)