Files
litek/src/components/tool/index.tsx
typist df25315367 feat: implement UUID generator tool and refactor tool structure
- Added a new Tool interface to define the structure of tools.
- Introduced a UUID generator tool with a corresponding component and icon.
- Refactored the tools array to include the new UUID generator tool.
2025-10-28 00:32:12 +08:00

14 lines
272 B
TypeScript

import { Hash } from 'lucide-react'
import type { Tool } from "./type";
import { UUID } from './uuid'
export const tools: Tool[] = [
{
path: "uuid",
name: "UUID Generator",
description: "Generate a UUID",
icon: <Hash />,
component: <UUID />,
}
];