mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
12 lines
442 B
TypeScript
12 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,
|
|
});
|