mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 09:46:15 -04:00
23 lines
538 B
TypeScript
23 lines
538 B
TypeScript
import { DeviceDesktop } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Device information',
|
|
path: '/device-information',
|
|
description: 'Get information about your current device (screen size, pixel-ratio, user agent, ...)',
|
|
keywords: [
|
|
'device',
|
|
'information',
|
|
'screen',
|
|
'pixel',
|
|
'ratio',
|
|
'status',
|
|
'data',
|
|
'computer',
|
|
'size',
|
|
'user',
|
|
'agent',
|
|
],
|
|
component: () => import('./device-information.vue'),
|
|
icon: DeviceDesktop,
|
|
});
|