mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
13 lines
409 B
TypeScript
13 lines
409 B
TypeScript
![]() |
import { FileDiff } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Text diff',
|
||
|
path: '/text-diff',
|
||
|
description: 'Compare two texts and see the differences between them.',
|
||
|
keywords: ['text', 'diff', 'compare', 'string', 'text diff', 'code'],
|
||
|
component: () => import('./text-diff.vue'),
|
||
|
icon: FileDiff,
|
||
|
createdAt: new Date('2023-08-16'),
|
||
|
});
|