@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
14 lines (13 loc) • 546 B
JavaScript
'use client';
import '@ui5/webcomponents/dist/Option.js';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* The `Option` component defines the content of an option in the `Select`.
*
*
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
*/
const Option = withWebComponent('ui5-option', ['additionalText', 'icon', 'tooltip', 'value'], ['selected'], [], []);
Option.displayName = 'Option';
export { Option };