UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

11 lines (10 loc) 583 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `MultiComboBoxItem` represents the item for a `MultiComboBox`. * * __Note:__ This is a UI5 Web Component! [MultiComboBoxItem UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/MultiComboBoxItem) | [Repository](https://github.com/UI5/webcomponents) */ const MultiComboBoxItem = withWebComponent('ui5-mcb-item', ['additionalText', 'text', 'value'], ['selected'], [], ['click']); MultiComboBoxItem.displayName = 'MultiComboBoxItem'; export { MultiComboBoxItem };