fix(dependency) Replace @vicons/tabler with @tabler/icons-vue

This commit is contained in:
chadmin 2024-10-27 10:54:45 -07:00
parent 0b1b98f93e
commit b77138181a
118 changed files with 295 additions and 312 deletions

View file

@ -46,7 +46,7 @@ createToolFile(
createToolFile(
`index.ts`,
`
import { ArrowsShuffle } from '@vicons/tabler';
import { IconArrowsShuffle } from '@tabler/icons-vue';
import { defineTool } from '../tool';
export const tool = defineTool({
@ -55,7 +55,7 @@ export const tool = defineTool({
description: '',
keywords: ['${toolName.split('-').join("', '")}'],
component: () => import('./${toolName}.vue'),
icon: ArrowsShuffle,
icon: IconArrowsShuffle,
createdAt: new Date('${new Date().toISOString().split('T')[0]}'),
});
`,