2022-04-14 02:30:25 +02:00
|
|
|
import { FileDigit } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-14 02:30:25 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-07-25 23:21:42 +02:00
|
|
|
name: 'Base64 file converter',
|
2022-07-25 23:31:06 +02:00
|
|
|
path: '/base64-file-converter',
|
2023-05-28 23:13:24 +02:00
|
|
|
description: 'Convert string, files or images into a it\'s base64 representation.',
|
2022-05-09 14:38:54 +02:00
|
|
|
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
2022-07-25 23:21:42 +02:00
|
|
|
component: () => import('./base64-file-converter.vue'),
|
2022-04-14 02:30:25 +02:00
|
|
|
icon: FileDigit,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|