mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
12 lines
457 B
TypeScript
12 lines
457 B
TypeScript
import { Hourglass } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.eta-calculator.title'),
|
|
path: '/eta-calculator',
|
|
description: translate('tools.eta-calculator.description'),
|
|
keywords: ['eta', 'calculator', 'estimated', 'time', 'arrival', 'average'],
|
|
component: () => import('./eta-calculator.vue'),
|
|
icon: Hourglass,
|
|
});
|