import React from "react" interface IInlineCodeProps { wrap?: boolean } export function InlineCode({ wrap, children }: React.PropsWithChildren) { return {children} }