Created
October 14, 2021 18:57
-
-
Save maapteh/142ab4dc2cd9e9799e722a3b9246106f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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