mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-16 21:08:33 +05:30
17 lines
531 B
TypeScript
17 lines
531 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'create-palindrome',
|
|
icon: 'material-symbols-light:repeat',
|
|
|
|
keywords: ['create', 'palindrome'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:createPalindrome.title',
|
|
description: 'string:createPalindrome.description',
|
|
shortDescription: 'string:createPalindrome.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|