@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
12 lines (11 loc) • 493 B
JavaScript
'use client';
import { withWebComponent } from '../../internal/withWebComponent.js';
/**
* The `CalendarDate` component defines a calendar date to be used inside `Calendar`
*
* __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/)
* @abstract
*/
const CalendarDate = withWebComponent('ui5-date', ['value'], [], [], []);
CalendarDate.displayName = 'CalendarDate';
export { CalendarDate };