UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

17 lines (16 loc) 826 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * Represents a group of navigation actions within `SideNavigation`. * The `SideNavigationGroup` can only be used inside a `SideNavigation`. * * * * __Note:__ This is a UI5 Web Component! [SideNavigationGroup UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/SideNavigationGroup) | [Repository](https://github.com/UI5/webcomponents) * * @since [1.24.0](https://github.com/UI5/webcomponents/releases/tag/v1.24.0) of __@ui5/webcomponents-fiori__. * @abstract */ const SideNavigationGroup = withWebComponent('ui5-side-navigation-group', ['accessibleName', 'text', 'tooltip'], ['disabled', 'expanded'], [], []); SideNavigationGroup.displayName = 'SideNavigationGroup'; export { SideNavigationGroup };