@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
16 lines (15 loc) • 720 B
JavaScript
'use client';
import '@ui5/webcomponents-fiori/dist/SearchScope.js';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* The `SearchScope` represents the options for the scope in `Search`.
*
* __Note:__ This is a UI5 Web Component! [SearchScope UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/fiori/SearchScope) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.9.0](https://github.com/UI5/webcomponents/releases/tag/v2.9.0) of __@ui5/webcomponents-fiori__.
* @abstract
* @experimental
*/
const SearchScope = withWebComponent('ui5-search-scope', ['text', 'value'], [], [], []);
SearchScope.displayName = 'SearchScope';
export { SearchScope };