it-tools/src/tools/case-converter/index.ts
2022-06-02 00:11:49 +02:00

25 lines
578 B
TypeScript

import { LetterCaseToggle } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Case converter',
path: '/case-converter',
description: 'Change the case of a string and chose between different formats',
keywords: [
'case',
'converter',
'camelCase',
'capitalCase',
'constantCase',
'dotCase',
'headerCase',
'noCase',
'paramCase',
'pascalCase',
'pathCase',
'sentenceCase',
'snakeCase',
],
component: () => import('./case-converter.vue'),
icon: LetterCaseToggle,
});