import { AbcRound } from '@vicons/material'; import { defineTool } from '../tool'; import { translate as t } from '@/plugins/i18n.plugin'; export const tool = defineTool({ name: t('tools.slugify-string.title'), path: '/slugify-string', description: t('tools.slugify-string.description'), keywords: ['slugify', 'string', 'escape', 'emoji', 'special', 'character', 'space', 'trim'], component: () => import('./slugify-string.vue'), icon: AbcRound, });