UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 880 B
'use client'; import '@ui5/webcomponents-fiori/dist/SideNavigationItem.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * 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! [SideNavigationItem UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/SideNavigationItem) | [Repository](https://github.com/UI5/webcomponents) * @abstract */ const SideNavigationItem = withWebComponent('ui5-side-navigation-item', ['accessibilityAttributes', 'accessibleName', 'design', 'href', 'icon', 'target', 'text', 'tooltip'], ['disabled', 'expanded', 'selected', 'unselectable'], ['tag'], ['click']); SideNavigationItem.displayName = 'SideNavigationItem'; export { SideNavigationItem };