Skip to content

Commit f25f0b4

Browse files
committed
Update react-ui.api.md
1 parent 3fe7028 commit f25f0b4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/react-ui/temp/react-ui.api.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,16 @@ export function SideNav({ children, sx, width, headerHeight, header, endAdorner,
200200
// @public
201201
export function SideNavItem({ children, href, selected, icon }: SideNavItemProps): react_jsx_runtime.JSX.Element;
202202

203-
// Warning: (ae-forgotten-export) The symbol "SideNavItemGroupProps" needs to be exported by the entry point index.d.ts
204-
//
205203
// @public
206204
export function SideNavItemGroup({ children, label, expanded: controlledExpanded, defaultExpanded }: SideNavItemGroupProps): react_jsx_runtime.JSX.Element;
207205

206+
// @public
207+
export type SideNavItemGroupProps = PropsWithChildren<{
208+
label: string;
209+
expanded?: boolean;
210+
defaultExpanded?: boolean;
211+
}>;
212+
208213
// @public
209214
export type SideNavItemProps = PropsWithChildren<{
210215
href: string;

0 commit comments

Comments
 (0)