- 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.
14 lines
272 B
TypeScript
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 />,
|
|
}
|
|
]; |