2025-06-03 21:40:58 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
path: 'base64',
|
2025-06-05 18:44:19 +01:00
|
|
|
icon: 'tabler:number-64-small',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-06-03 21:40:58 +02:00
|
|
|
keywords: ['base64'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'string:base64.title',
|
|
|
|
|
description: 'string:base64.description',
|
|
|
|
|
shortDescription: 'string:base64.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-06-03 21:40:58 +02:00
|
|
|
});
|