UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

14 lines (13 loc) 626 B
'use client'; import '@ui5/webcomponents-fiori/dist/ShellBarItem.js'; 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 };