mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 17:56:13 -04:00
12 lines
452 B
TypeScript
12 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,
|
||
|
});
|