refactor(xml-formatter): add better suitable icon

This commit is contained in:
Corentin Thomasset 2023-06-18 12:16:20 +02:00
parent ddd191e35d
commit bc0c02bd01
No known key found for this signature in database
GPG key ID: DBD997E935996158

View file

@ -1,4 +1,4 @@
import { ArrowsShuffle } from '@vicons/tabler';
import { Code } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
@ -7,6 +7,6 @@ export const tool = defineTool({
description: 'Prettify your XML string to a human friendly readable format.',
keywords: ['xml', 'prettify', 'format'],
component: () => import('./xml-formatter.vue'),
icon: ArrowsShuffle,
icon: Code,
createdAt: new Date('2023-06-17'),
});