UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 808 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * An entry posted on the timeline. * It is intented to represent a group of `<TimelineItem>`s. * * **Note**: Please do not use empty groups in order to preserve the intended design. * * __Note:__ This is a UI5 Web Component! [TimelineGroupItem UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/TimelineGroupItem) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.1.0](https://github.com/UI5/webcomponents/releases/tag/v2.1.0) of __@ui5/webcomponents-fiori__. */ const TimelineGroupItem = withWebComponent('ui5-timeline-group-item', ['groupName'], ['collapsed'], [], ['toggle']); TimelineGroupItem.displayName = 'TimelineGroupItem'; export { TimelineGroupItem };