mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 10:36:14 -04:00
11 lines
491 B
TypeScript
11 lines
491 B
TypeScript
import { ArrowsLeftRight } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Integer base converter',
|
|
path: '/base-converter',
|
|
description: 'Convert number between different bases (decimal, hexadecimal, binary, octal, base64, ...)',
|
|
keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'],
|
|
component: () => import('./integer-base-converter.vue'),
|
|
icon: ArrowsLeftRight,
|
|
});
|