import type { ReactNode } from "react"; type Accent = "secondary" | "tertiary" | "primary"; interface TechChipProps { children: ReactNode; accent?: Accent; className?: string; } const accentClasses: Record = { primary: "text-primary", secondary: "text-secondary", tertiary: "text-tertiary", }; export function TechChip({ children, accent = "secondary", className = "" }: TechChipProps) { return ( {children} ); }