mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
![]() |
import { Artboard } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Image to ASCII Art',
|
||
|
path: '/image-to-ascii-art',
|
||
|
description: 'Image to ASCII Art Generator',
|
||
|
keywords: ['image', 'ascii', 'art'],
|
||
|
component: () => import('./image-to-ascii-art.vue'),
|
||
|
icon: Artboard,
|
||
|
createdAt: new Date('2024-03-15'),
|
||
|
});
|