InlineCode

When I wrote sayHello("John") it didn't work.
import { InlineCode } from "rfui";

#Basic

When I wrote sayHello("John") it didn't work.
<div>
  When I wrote <InlineCode>sayHello("John")</InlineCode> it didn't work.
</div>

#Props

PropRequiredDefaultType and notes
children-
ComponentChild
...rest--
ComponentProps<"code">
See the docs for rest parameters. For InlineCode, you could pass anything you normally would pass to <code> because the return value looks something like this:
<code
  class={className}
  {...restWithoutClass}
>
  {children}
</code>