mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 22:07:10 -04:00
12 lines
444 B
TypeScript
12 lines
444 B
TypeScript
![]() |
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,
|
||
|
});
|