1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-30 10:39:38 +02:00

feat(new-tool): svg mesh gradient generator

This commit is contained in:
Corentin Thomasset 2023-03-19 11:53:15 +01:00
parent ce3150c65d
commit a8c1231753
No known key found for this signature in database
GPG key ID: DBD997E935996158
6 changed files with 226 additions and 140 deletions

View file

@ -0,0 +1,12 @@
import { ArrowsShuffle } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Svg mesh gradient generator',
path: '/svg-mesh-gradient-generator',
description: '',
keywords: ['svg', 'mesh', 'gradient', 'generator'],
component: () => import('./svg-mesh-gradient-generator.vue'),
icon: ArrowsShuffle,
createdAt: new Date('2023-05-05'),
});