mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-10 08:05:00 -04:00
13 lines
442 B
TypeScript
13 lines
442 B
TypeScript
![]() |
import { Microphone } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
import { translate } from '@/plugins/i18n.plugin';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: translate('tools.mic-tester.title'),
|
||
|
path: '/mic-tester',
|
||
|
description: translate('tools.mic-tester.description'),
|
||
|
keywords: ['mic', 'microphone', 'test', 'check', 'troubleshoot', 'sound'],
|
||
|
component: () => import('./mic-tester.vue'),
|
||
|
icon: Microphone,
|
||
|
});
|