@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
16 lines (15 loc) • 857 B
JavaScript
'use client';
import '@ui5/webcomponents-fiori/dist/SearchItemGroup.js';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* The `SearchItemGroup` is type of suggestion item,
* that can be used to split the `SearchItem` suggestions into groups.
*
* __Note:__ This is a UI5 Web Component! [SearchItemGroup UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/SearchItemGroup) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.9.0](https://github.com/UI5/webcomponents/releases/tag/v2.9.0) of __@ui5/webcomponents-fiori__.
* @experimental
*/
const SearchItemGroup = withWebComponent('ui5-search-item-group', ['headerAccessibleName', 'headerText', 'wrappingType'], [], ['header'], ['move-over', 'move']);
SearchItemGroup.displayName = 'SearchItemGroup';
export { SearchItemGroup };