UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

13 lines (12 loc) 570 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `ShellBarItem` represents a custom item for `ShellBar`. * * * * __Note:__ This is a UI5 Web Component! [ShellBarItem UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/ShellBarItem) | [Repository](https://github.com/UI5/webcomponents) */ const ShellBarItem = withWebComponent('ui5-shellbar-item', ['accessibilityAttributes', 'count', 'icon', 'text'], [], [], ['click']); ShellBarItem.displayName = 'ShellBarItem'; export { ShellBarItem };