mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
12 lines
376 B
TypeScript
12 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'),
|
|
});
|