From 4620776fe53fb5c5f56a887c27585e48fdbf5a9b Mon Sep 17 00:00:00 2001 From: Jonathan Trujillo <313951+jonotrujillo@users.noreply.github.com> Date: Thu, 27 Jul 2023 10:41:04 +0200 Subject: [PATCH] fix: support children prop type in row component (#347) --- src/components/Grid/Grid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Grid/Grid.tsx b/src/components/Grid/Grid.tsx index 4671d80c6..8a684097b 100644 --- a/src/components/Grid/Grid.tsx +++ b/src/components/Grid/Grid.tsx @@ -16,7 +16,7 @@ const BorderBoxWrapper = styled(Box)` type RowProps = BoxProps; -const Row: FC = (props: RowProps) => ( +const Row: FC> = props => ( );