mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-11-07 22:55:46 +05:30
23 lines
535 B
TypeScript
23 lines
535 B
TypeScript
import { DeviceDesktop } from '@vicons/tabler';
|
|
import type { ITool } from './../Tool';
|
|
|
|
export const tool: ITool = {
|
|
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,
|
|
};
|