mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-10 16:15:01 -04:00
13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
![]() |
import { SquareHalf } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Length Units Converter',
|
||
|
path: '/length-converter',
|
||
|
description: 'Convert values from length units',
|
||
|
keywords: ['length', 'converter'],
|
||
|
component: () => import('./length-converter.vue'),
|
||
|
icon: SquareHalf,
|
||
|
createdAt: new Date('2024-08-15'),
|
||
|
});
|