mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
import { Artboard } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'ASCII Art Text Generator',
|
|
path: '/ascii-text-drawer',
|
|
description: 'Create ASCII art text with many fonts and styles.',
|
|
keywords: ['ascii', 'asciiart', 'text', 'drawer'],
|
|
component: () => import('./ascii-text-drawer.vue'),
|
|
icon: Artboard,
|
|
createdAt: new Date('2024-03-03'),
|
|
category: 'Text',
|
|
});
|