it-tools/src/tools/pdf-encrypt/index.ts
sharevb 1b82da5b4b feat(new tool): PDF Encrypt
PDF Encrypter
2024-04-28 11:35:09 +02:00

12 lines
352 B
TypeScript

import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Pdf Encrypt',
path: '/pdf-encrypt',
description: 'Encrypt and add protection to a PDF File',
keywords: ['pdf', 'encrypt'],
component: () => import('./pdf-encrypt.vue'),
icon: Lock,
createdAt: new Date('2024-01-09'),
});