Skip to content

Instantly share code, notes, and snippets.

@maapteh
Created October 14, 2021 18:57
Show Gist options
  • Save maapteh/142ab4dc2cd9e9799e722a3b9246106f to your computer and use it in GitHub Desktop.
Save maapteh/142ab4dc2cd9e9799e722a3b9246106f to your computer and use it in GitHub Desktop.
const StyledRow = styled(Box)`
box-sizing: content-box;
`;
const padding = { base: 4, md: 8 };
export function Row({
...boxProps
}: Omit<BoxProps, 'p' | 'pl' | 'pr' | 'm' | 'ml' | 'mr'>) {
return (
<StyledRow
pl={padding}
pr={padding}
ml="auto"
mr="auto"
maxW="max"
{...boxProps}
/>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment