UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 592 B
'use client'; import '@ui5/webcomponents-fiori/dist/ShellBarItem.js'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * The `ShellBarItem` represents a custom item, that * might be added to the `ShellBar`. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * @abstract */ const ShellBarItem = withWebComponent('ui5-shellbar-item', ['count', 'icon', 'text'], [], [], ['click']); ShellBarItem.displayName = 'ShellBarItem'; export { ShellBarItem };