From 08fbe941fb5eec39674132ece77aa72917553bf5 Mon Sep 17 00:00:00 2001 From: ialexanderbrito Date: Wed, 6 Apr 2022 20:04:36 -0300 Subject: [PATCH] fix: button calendar windows and mac --- src/components/Overlay/index.tsx | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/components/Overlay/index.tsx b/src/components/Overlay/index.tsx index ada6236..0483dd5 100644 --- a/src/components/Overlay/index.tsx +++ b/src/components/Overlay/index.tsx @@ -23,7 +23,7 @@ export function Overlay(props: OverlayProps) { {props.calendar && ( <> - {(isAndroid || isWindows) && ( + {isAndroid && ( <> )} + + {(isWindows || isMacOs) && ( + <> + + + + )} )}