UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 760 B
'use client'; import '@ui5/webcomponents-fiori/dist/SideNavigationSubItem.js'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * Represents a single navigation action within `SideNavigationItem`. * The `SideNavigationSubItem` is intended to be used inside a `SideNavigationItem` only. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * @abstract */ const SideNavigationSubItem = withWebComponent('ui5-side-navigation-sub-item', ['href', 'icon', 'target', 'text', 'tooltip'], ['disabled', 'selected'], [], ['click']); SideNavigationSubItem.displayName = 'SideNavigationSubItem'; export { SideNavigationSubItem };