OL

  1. First
  2. Second
  3. Third
import { OL } from "rfui";

#Basic

  1. First
  2. Second
  3. Third
<OL>
  <li>First</li>
  <li>Second</li>
  <li>Third</li>
</OL>

#Outside

  1. First
  2. Second
  3. Third
<OL bulletLocation="outside">
  <li>First</li>
  <li>Second</li>
  <li>Third</li>
</OL>

#Props

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