import { Key } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ name: 'JWT parser', path: '/jwt-parser', description: 'Parse and decode your JSON Web Token (jwt) and display its content.', keywords: [ 'jwt', 'parser', 'decode', 'typ', 'alg', 'iss', 'sub', 'aud', 'exp', 'nbf', 'iat', 'jti', 'json', 'web', 'token', ], component: () => import('./jwt-parser.vue'), icon: Key, });