it-tools/src/tools/color-converter/index.ts
2022-04-15 18:50:07 +02:00

12 lines
366 B
TypeScript

import { Palette } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'Color converter',
path: '/color-converter',
description: 'Convert color between the different formats (hex, rgb, hsl and css name)',
keywords: ['color', 'converter'],
component: () => import('./color-converter.vue'),
icon: Palette,
};