2024-07-10 14:34:17 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
// import image from '@assets/text.png';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
path: 'create-palindrome',
|
2025-03-08 07:46:31 -05:00
|
|
|
icon: 'material-symbols-light:repeat',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-10 14:34:17 +00:00
|
|
|
keywords: ['create', 'palindrome'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'string:createPalindrome.title',
|
|
|
|
|
description: 'string:createPalindrome.description',
|
2025-07-18 14:45:15 -07:00
|
|
|
shortDescription: 'string:createPalindrome.shortDescription',
|
2025-07-22 19:47:09 +01:00
|
|
|
userTypes: ['generalUsers']
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2024-07-14 00:23:30 +01:00
|
|
|
});
|