UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

12 lines (11 loc) 529 B
'use client'; import { withWebComponent } from '../../internal/withWebComponent.js'; /** * The `MultiComboBoxItem` represents the item for a `MultiComboBox`. * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * @abstract */ const MultiComboBoxItem = withWebComponent('ui5-mcb-item', ['additionalText', 'text'], ['selected'], [], []); MultiComboBoxItem.displayName = 'MultiComboBoxItem'; export { MultiComboBoxItem };