@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
14 lines (13 loc) • 621 B
JavaScript
'use client';
import '@ui5/webcomponents/dist/ComboBoxItemGroup.js';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* The `ui5-cb-group-item` is type of suggestion item,
* that can be used to split the `ComboBox` suggestions into groups.
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
* @abstract
*/
const ComboBoxItemGroup = withWebComponent('ui5-cb-item-group', ['headerText'], [], [], []);
ComboBoxItemGroup.displayName = 'ComboBoxItemGroup';
export { ComboBoxItemGroup };