aboutsummaryrefslogtreecommitdiff
path: root/src/tools/roman-numeral-converter/index.ts
blob: 6929747f1e0bcf566a33658ecf094e72afed1734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { LetterX } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.roman-numeral-converter.title'),
  path: '/roman-numeral-converter',
  description: translate('tools.roman-numeral-converter.description'),
  keywords: ['roman', 'arabic', 'converter', 'X', 'I', 'V', 'L', 'C', 'D', 'M'],
  component: () => import('./roman-numeral-converter.vue'),
  icon: LetterX,
});