@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
15 lines (14 loc) • 536 B
JavaScript
'use client';
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 };