@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
14 lines (13 loc) • 722 B
JavaScript
'use client';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* The `ToolbarSelectOption` component defines the content of an option in the `ToolbarSelect`.
*
* __Note:__ This is a UI5 Web Component! [ToolbarSelectOption UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/ToolbarSelectOption) | [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 ToolbarSelectOption = withWebComponent('ui5-toolbar-select-option', ['value'], ['selected'], [], []);
ToolbarSelectOption.displayName = 'ToolbarSelectOption';
export { ToolbarSelectOption };