blob: f2dbdc0a420e85cba68a766814c063b8851c3018 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
});
|