UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

15 lines (14 loc) 776 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `ToolbarSeparator` is an element, used for visual separation between two elements. * It takes no space in calculating toolbar items width. * * __Note:__ This is a UI5 Web Component! [ToolbarSeparator UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/ToolbarSeparator) | [Repository](https://github.com/UI5/webcomponents) * * @since [1.17.0](https://github.com/UI5/webcomponents/releases/tag/v1.17.0) of __@ui5/webcomponents__. * @abstract */ const ToolbarSeparator = withWebComponent('ui5-toolbar-separator', ['overflowPriority'], ['preventOverflowClosing'], [], []); ToolbarSeparator.displayName = 'ToolbarSeparator'; export { ToolbarSeparator };