mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-18 21:49:31 +02:00
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Base64',
|
|
path: 'base64',
|
|
icon: 'tabler:number-64-small',
|
|
description:
|
|
'A simple tool to encode or decode data using Base64, which is commonly used in web applications.',
|
|
shortDescription: 'Encode or decode data using Base64.',
|
|
keywords: ['base64'],
|
|
component: lazy(() => import('./index'))
|
|
});
|