mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 10:06:16 -04:00
13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
![]() |
import { LetterCaseToggle } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
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,
|
||
|
};
|
||
|
|