@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
15 lines (14 loc) • 721 B
JavaScript
'use client';
import '@ui5/webcomponents/dist/ToolbarSelectOption.js';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* The `ToolbarSelectOption` component defines the content of an option in the `ToolbarSelect`.
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
*
* @since [1.17.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v1.17.0) of __@ui5/webcomponents__.
* @abstract
*/
const ToolbarSelectOption = withWebComponent('ui5-toolbar-select-option', [], ['selected'], [], []);
ToolbarSelectOption.displayName = 'ToolbarSelectOption';
export { ToolbarSelectOption };