feat(new-tool): bcrypt

This commit is contained in:
Corentin Thomasset 2022-04-18 10:16:59 +02:00
parent 2b89111cbb
commit 6d5856fa93
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 157 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as bcrypt } from './bcrypt';
import { tool as caseConverter } from './case-converter';
import { tool as colorConverter } from './color-converter';
import { tool as qrCodeGenerator } from './qr-code-generator';
@ -24,7 +25,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
components: [tokenGenerator, hashText, uuidGenerator, cypher, bip39],
components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39],
},
{
name: 'Converter',