it-tools/src/tools/color-converter/index.ts
2024-02-01 14:05:54 +01:00

14 lines
460 B
TypeScript

import { Palette } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.color-converter.title'),
path: '/color-converter',
description: translate('tools.color-converter.description'),
keywords: ['color', 'converter'],
component: () => import('./color-converter.vue'),
icon: Palette,
redirectFrom: ['/color-picker-converter'],
});