feat(new-tool): an svg placeholder image generator

This commit is contained in:
Corentin Thomasset 2022-08-03 13:58:00 +02:00 committed by Corentin THOMASSET
parent 0be33fb337
commit 129f74c371
3 changed files with 107 additions and 1 deletions

View file

@ -0,0 +1,11 @@
import { ImageOutlined } from '@vicons/material';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'SVG placeholder generator',
path: '/svg-placeholder-generator',
description: 'Generate svg images to use as placeholder in your applications.',
keywords: ['svg', 'placeholder', 'generator', 'image', 'size', 'mockup'],
component: () => import('./svg-placeholder-generator.vue'),
icon: ImageOutlined,
});