We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14af478 commit 4620776Copy full SHA for 4620776
src/components/Grid/Grid.tsx
@@ -16,7 +16,7 @@ const BorderBoxWrapper = styled(Box)`
16
17
type RowProps = BoxProps;
18
19
-const Row: FC<RowProps> = (props: RowProps) => (
+const Row: FC<PropsWithChildren<RowProps>> = props => (
20
<Box display="flex" flexWrap="wrap" marginRight={`-${GAP}`} {...props} />
21
);
22
0 commit comments