@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
18 lines (17 loc) • 762 B
JavaScript
'use client';
import '@ui5/webcomponents/dist/ListItemGroup.js';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* The `ListItemGroup` is a special list item, used only to create groups of list items.
*
* This is the item to use inside a `List`.
*
*
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
*
* @since [2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__.
*/
const ListItemGroup = withWebComponent('ui5-li-group', ['headerAccessibleName', 'headerText'], [], ['header'], ['move-over', 'move']);
ListItemGroup.displayName = 'ListItemGroup';
export { ListItemGroup };