const Badge = ({ level, size = "sm" }) => { const isReq = level === "required"; const base = size === "sm" ? "text-[10px] px-1.5 py-0.5" : "text-xs px-2 py-1"; return ( {isReq ? "REQ" : "REC"} ); }; window.SpecComponents = window.SpecComponents || {}; window.SpecComponents.Badge = Badge;