DescriptionList

Name
John Doe
Age
30
import { DescriptionList, DescriptionListItem } from "rfui-package";

#Basic

Name
John Doe
Age
30
<DescriptionList>
  <DescriptionListItem label="Name">John Doe</DescriptionListItem>
  <DescriptionListItem label="Age">30</DescriptionListItem>
</DescriptionList>

#Props

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

DescriptionListItem

PropRequiredDefaultType and notes
label-
string
dtRest--
ComponentProps<"dt">
ddRest--
ComponentProps<"dd">
...rest--
ComponentProps<"div">
See the docs for rest parameters. For DescriptionListItem, you could pass anything you normally would pass to <div> because the container looks something like this:
<div className={className} {...restWithoutClass}>
  {children}
</div>