2022-08-03 13:58:00 +02:00
|
|
|
import { ImageOutlined } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-08-03 13:58:00 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.svg-placeholder-generator.title'),
|
2022-08-03 13:58:00 +02:00
|
|
|
path: '/svg-placeholder-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.svg-placeholder-generator.description'),
|
2022-08-03 13:58:00 +02:00
|
|
|
keywords: ['svg', 'placeholder', 'generator', 'image', 'size', 'mockup'],
|
|
|
|
component: () => import('./svg-placeholder-generator.vue'),
|
|
|
|
icon: ImageOutlined,
|
|
|
|
});
|