From 4b676e0f4e8b1bad289e4728d5a93c780d9e0939 Mon Sep 17 00:00:00 2001 From: melloware Date: Sun, 26 Nov 2023 11:09:47 -0500 Subject: [PATCH] Fix #4883: Splitbutton PT docs --- components/lib/splitbutton/splitbutton.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/lib/splitbutton/splitbutton.d.ts b/components/lib/splitbutton/splitbutton.d.ts index 5db863040f..1d5f76137a 100644 --- a/components/lib/splitbutton/splitbutton.d.ts +++ b/components/lib/splitbutton/splitbutton.d.ts @@ -37,14 +37,14 @@ export interface SplitButtonPassThroughOptions { * Uses to pass attributes to the root's DOM element. */ root?: SplitButtonPassThroughType>; - /** - * Uses to pass attributes to the icon's DOM element. - */ - icon?: SplitButtonPassThroughType | React.HTMLAttributes>; /** * Uses to pass attributes to the Button component. */ button?: ButtonPassThroughOptions; + /** + * Uses to pass attributes to the icon's DOM element. + */ + icon?: SplitButtonPassThroughType | React.HTMLAttributes>; /** * Uses to pass attributes to the Button component. */