mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-12-11 15:22:53 +00:00
12 lines
438 B
TypeScript
12 lines
438 B
TypeScript
import { LetterX } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Roman numeral converter',
|
|
path: '/roman-numeral-converter',
|
|
description: 'Convert Roman numerals to numbers and convert numbers to Roman numerals.',
|
|
keywords: ['roman', 'arabic', 'converter', 'X', 'I', 'V', 'L', 'C', 'D', 'M'],
|
|
component: () => import('./roman-numeral-converter.vue'),
|
|
icon: LetterX,
|
|
});
|