@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
15 lines (14 loc) • 754 B
JavaScript
'use client';
import '@ui5/webcomponents/dist/CalendarDateRange.js';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* The `CalendarDateRange` component defines a range of dates to be used inside `Calendar`
*
* __Note:__ This is a UI5 Web Component! [CalendarDateRange UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/CalendarDateRange) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__.
* @abstract
*/
const CalendarDateRange = withWebComponent('ui5-date-range', ['endValue', 'startValue'], [], [], []);
CalendarDateRange.displayName = 'CalendarDateRange';
export { CalendarDateRange };