import React from 'react' import { Search } from 'lucide-react' import { Badge } from '../ui-v2/badge' type ToolBadgeProps = { tool: string children: React.ReactNode className?: string } export const ToolBadge: React.FC = ({ tool, children, className }) => { const icon: Record = { search: } return ( {icon[tool]} {children} ) }