From db7b2f32ba4cdbfc98032388b05260ffc7286c62 Mon Sep 17 00:00:00 2001 From: Alexander Swed Date: Sat, 3 Oct 2020 21:04:42 +0200 Subject: [PATCH] fix(Menu): props now have default values so not required --- src/lib/Menu/MenuList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/Menu/MenuList.tsx b/src/lib/Menu/MenuList.tsx index 7ac995cb..6df51036 100644 --- a/src/lib/Menu/MenuList.tsx +++ b/src/lib/Menu/MenuList.tsx @@ -20,8 +20,8 @@ const List = styled('ul', { type UlListProps = React.ComponentProps; type Props = UlListProps & { - offset: number; - placement: Options['placement']; + offset?: number; + placement?: Options['placement']; }; const UlList: React.FC = (ulProps) => {