UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

16 lines (15 loc) 836 B
'use client'; import '@ui5/webcomponents/dist/SpecialCalendarDate.js'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `SpecialCalendarDate` component defines a special calendar date to be used inside `Calendar`, * which is visually distinguished from the rest of the dates. * * __Note:__ This is a UI5 Web Component! [SpecialCalendarDate UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/SpecialCalendarDate) | [Repository](https://github.com/UI5/webcomponents) * * @since [1.23.0](https://github.com/UI5/webcomponents/releases/tag/v1.23.0) of __@ui5/webcomponents__. * @abstract */ const SpecialCalendarDate = withWebComponent('ui5-special-date', ['type', 'value'], [], [], []); SpecialCalendarDate.displayName = 'SpecialCalendarDate'; export { SpecialCalendarDate };