({ children }: { children?: React.ReactNode })
| 33 | // ─── Inline code / pre renderers ───────────────────────────────────────────── |
| 34 | |
| 35 | function 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 | |
| 43 | interface PreProps { |
| 44 | children?: React.ReactNode; |
nothing calls this directly
no outgoing calls
no test coverage detected