it-tools/src/tools/image-to-ascii-art/index.ts

13 lines
376 B
TypeScript
Raw Normal View History

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'),
});