From d2e2cdfaa42e40930a6fbe76b63897c03411aadb Mon Sep 17 00:00:00 2001 From: Simon He <57086651+Simon-He95@users.noreply.github.com> Date: Sun, 12 Nov 2023 17:59:44 +0800 Subject: [PATCH] docs(listbox): fix ListboxSection Props typo --- apps/docs/content/docs/components/listbox.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/components/listbox.mdx b/apps/docs/content/docs/components/listbox.mdx index e6d2b6964e..0570269995 100644 --- a/apps/docs/content/docs/components/listbox.mdx +++ b/apps/docs/content/docs/components/listbox.mdx @@ -269,7 +269,7 @@ You can customize the `Listbox` items style by using the `itemClasses` prop and | items | [`Iterable`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) | Item objects in the collection. (dynamic) | - | | hideSelectedIcon | `boolean` | Whether to hide the check icon when the items are selected. | `false` | | showDivider | `boolean` | Whether to show the divider between the groups. | `false` | -| DividerProps | [DividerProps](/docs/components/divider) | The divider component props. | - | +| dividerProps | [DividerProps](/docs/components/divider) | The divider component props. | - | | classNames | `Record<"base"| "heading"| "group"| "divider", string>` | Allows to set custom class names for the listbox section slots. | - | | itemClasses | `Record<"base"| "wrapper"| "title"| "description"| "shortcut" | "selectedIcon", string>` | Allows to set custom class names for the listbox item slots. | - |