mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
import { AlignJustified } from '@vicons/tabler';
|
|
import type { ITool } from '../Tool';
|
|
|
|
export const tool: ITool = {
|
|
name: 'BIP39 passphrase generator',
|
|
path: '/bip39-generator',
|
|
description: 'Generate BIP39 passphrase from existing or random mnemonic, or get the mnemonic from the passphrase.',
|
|
keywords: ['BIP39', 'passphrase', 'generator', 'mnemonic', 'entropy'],
|
|
component: () => import('./bip39-generator.vue'),
|
|
icon: AlignJustified,
|
|
};
|