MCPcopy Create free account
hub / github.com/codeaashu/claude-code / InlineCode

Function InlineCode

web/components/adapted/Markdown.tsx:35–41  ·  view source on GitHub ↗
({ children }: { children?: React.ReactNode })

Source from the content-addressed store, hash-verified

33// ─── Inline code / pre renderers ─────────────────────────────────────────────
34
35function InlineCode({ children }: { children?: React.ReactNode }) {
36 return (
37 <code className="px-1 py-0.5 rounded text-xs font-mono bg-surface-850 text-brand-300 border border-surface-700">
38 {children}
39 </code>
40 );
41}
42
43interface PreProps {
44 children?: React.ReactNode;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected