@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
15 lines (14 loc) • 683 B
JavaScript
'use client';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* Represents a navigation action. It can provide sub items.
* The `SideNavigationItem` is used within `SideNavigation` or `SideNavigationGroup` only.
*
*
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
* @abstract
*/
const SideNavigationItem = withWebComponent('ui5-side-navigation-item', ['href', 'icon', 'target', 'text', 'tooltip'], ['disabled', 'expanded', 'selected'], [], ['click']);
SideNavigationItem.displayName = 'SideNavigationItem';
export { SideNavigationItem };