From 002e49b42c7acd88b6c6c9be4a486bf0d390db33 Mon Sep 17 00:00:00 2001 From: bastantoine Date: Thu, 22 Dec 2022 20:07:21 +0100 Subject: [PATCH] change the icon of the tool --- src/tools/jwt-parser/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/jwt-parser/index.ts b/src/tools/jwt-parser/index.ts index eb1c6e48..f848ee35 100644 --- a/src/tools/jwt-parser/index.ts +++ b/src/tools/jwt-parser/index.ts @@ -1,4 +1,4 @@ -import { ArrowsShuffle } from '@vicons/tabler'; +import { Key } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ @@ -7,5 +7,5 @@ export const tool = defineTool({ description: '', keywords: ['jwt', 'parser'], component: () => import('./jwt-parser.vue'), - icon: ArrowsShuffle, + icon: Key, });