mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
12 lines
434 B
TypeScript
12 lines
434 B
TypeScript
![]() |
import { FileDigit } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'Base64 converter',
|
||
|
path: '/base64-converter',
|
||
|
description: "Convert string, files or images into a it's base64 representation.",
|
||
|
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'convertion', 'web', 'data', 'format'],
|
||
|
component: () => import('./base64-converter.vue'),
|
||
|
icon: FileDigit,
|
||
|
};
|