mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
11 lines
452 B
TypeScript
11 lines
452 B
TypeScript
import { TimerOutlined } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Chronometer',
|
|
path: '/chronometer',
|
|
description: 'Monitor the duration of a thing. Basically a chronometer with simple chronometer features.',
|
|
keywords: ['chronometer', 'time', 'lap', 'duration', 'measure', 'pause', 'resume', 'stopwatch'],
|
|
component: () => import('./chronometer.vue'),
|
|
icon: TimerOutlined,
|
|
});
|