import type React from "react"; import { COLOR } from "@/lib/colors"; import { TEXT } from "@/lib/fonts"; export const ToolPill: React.FC<{ name: string; category: string; style?: React.CSSProperties; }> = ({ name, category, style }) => { const color = COLOR.category[category] ?? COLOR.accent; return (
{name}
); };