From 5e2f3b24d17ecde0104bf81b2be0e66a6b8861d9 Mon Sep 17 00:00:00 2001 From: LeandroTorresSicilia Date: Sat, 3 Feb 2024 13:00:29 -0800 Subject: [PATCH] fix: add highlightedDays to Calendar ts declaration file --- src/components/Calendar/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Calendar/index.d.ts b/src/components/Calendar/index.d.ts index 741e23e2d..40b1e121f 100644 --- a/src/components/Calendar/index.d.ts +++ b/src/components/Calendar/index.d.ts @@ -11,6 +11,7 @@ export interface CalendarProps extends BaseProps { variant?: 'single' | 'double'; locale?: string; disabledDays?: Array; + highlightedDays?: Array; } declare const Calendar: ComponentType;