aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ascii-text-drawer/index.ts
diff options
context:
space:
mode:
authorGravatar sharevb <sharevb@gmail.com> 2024-03-03 11:37:09 +0100
committerGravatar GitHub <noreply@github.com> 2024-03-03 10:37:09 +0000
commitfe349ad69b6a14e0f4b56bef12a6d800c7e6fa1f (patch)
tree7d5dbb357b58312c9bbca4f867eafd445abcf9a0 /src/tools/ascii-text-drawer/index.ts
parenta07806cd15fdbd24c88afaf618a2d0c16d66bb3f (diff)
downloadit-tools-fe349ad69b6a14e0f4b56bef12a6d800c7e6fa1f.tar.gz
it-tools-fe349ad69b6a14e0f4b56bef12a6d800c7e6fa1f.tar.zst
it-tools-fe349ad69b6a14e0f4b56bef12a6d800c7e6fa1f.zip
feat(new tool): ascii art generator (#886)
* feat(new tool): ascii art generator Fix #829 ; Text ASCII Art Generator (using figlet) * fix: make fonts list searchable * refactor(ascii-generator): updated tool definition * refactor(ascii-generator): equilibrate ui --------- Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
Diffstat (limited to 'src/tools/ascii-text-drawer/index.ts')
-rw-r--r--src/tools/ascii-text-drawer/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/ascii-text-drawer/index.ts b/src/tools/ascii-text-drawer/index.ts
new file mode 100644
index 0000000..cc1ba86
--- /dev/null
+++ b/src/tools/ascii-text-drawer/index.ts
@@ -0,0 +1,12 @@
+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'),
+});