UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

14 lines (13 loc) 694 B
'use client'; import '@ui5/webcomponents/dist/MenuSeparator.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `MenuSeparator` represents a horizontal line to separate menu items inside a `Menu`. * * __Note:__ This is a UI5 Web Component! [MenuSeparator UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/MenuSeparator) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__. */ const MenuSeparator = withWebComponent('ui5-menu-separator', [], [], [], []); MenuSeparator.displayName = 'MenuSeparator'; export { MenuSeparator };