mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 01:36:15 -04:00
15 lines
421 B
TypeScript
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);
|