it-tools/src/tools/index.ts
2022-04-04 00:25:53 +02:00

15 lines
421 B
TypeScript

import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as tokenGenerator } from './token-generator';
import { tool as hashText } from './hash-text';
export const toolsByCategory: ToolCategory[] = [
{
name: 'Crypto',
icon: LockOpen,
components: [tokenGenerator, hashText],
},
];
export const tools = toolsByCategory.flatMap(({ components }) => components);