it-tools/src/tools/data-transfer-rate-converter/index.ts
sharevb 49aa769bb8 feat(new tools): Data Storage Units Converter and Data Transfer Rate Converter
New Tool: Data Transfer Rate Converter
New Tool: Data Storage Units Converter (with MB, MiB and Mb)

Fix #539 #785 #1160 #848

Data Storage Units Converter inspired by #948 by @utf26
2024-09-11 22:46:17 +02:00

13 lines
458 B
TypeScript

import { TransferIn } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Data Transfer Rate Calculator',
path: '/data-transfer-rate-converter',
description: 'Compute Data Transfer times, rates and amount of data',
keywords: ['data', 'transfer', 'rate', 'convert', 'time'],
component: () => import('./data-transfer-rate-converter.vue'),
icon: TransferIn,
createdAt: new Date('2024-08-15'),
});