remove unnecessary font size declaration

This commit is contained in:
Paul Wackerow 2022-11-28 10:30:29 -08:00
parent f66ca930f5
commit 8c4e35aed2
No known key found for this signature in database
GPG key ID: BB63E296FE9CAB8D

View file

@ -10,7 +10,7 @@ const MDXComponents = {
// paragraphs // paragraphs
p: ({ children }: any) => { p: ({ children }: any) => {
return ( return (
<Text mb={7} size='sm' lineHeight={1.5}> <Text mb={7} lineHeight={1.5}>
{children} {children}
</Text> </Text>
); );