mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
21 lines
387 B
TypeScript
21 lines
387 B
TypeScript
import styled from 'styled-components';
|
|
import { Link, Text, text600, text700, text800, text900 } from './typography';
|
|
|
|
export const mdxComponents = {
|
|
h1: styled.h1`
|
|
${text900}
|
|
`,
|
|
h2: styled.h2`
|
|
${text800}
|
|
`,
|
|
h3: styled.h3`
|
|
${text700}
|
|
`,
|
|
h4: styled.h4`
|
|
${text600}
|
|
`,
|
|
p: styled.p`
|
|
${Text}
|
|
`,
|
|
a: Link,
|
|
};
|