-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmdx-components.tsx
59 lines (56 loc) · 1.42 KB
/
mdx-components.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck
import { useMDXComponents as getDocsMDXComponents } from 'nextra-theme-docs';
const { img: Image, table: Table, th: Th, tr: Tr, ...docsComponents } = getDocsMDXComponents();
export const useMDXComponents: typeof getDocsMDXComponents = components => ({
...docsComponents,
figcaption: props => (
<figcaption
className="mt-2 text-center text-sm"
{...props}
/>
),
figure: props => (
<figure
className="mt-6"
{...props}
/>
),
img: props => (
<Image
{...props}
className="nextra-border rounded-xl border drop-shadow-sm"
/>
),
table: props => (
<Table
className="w-full text-sm"
{...props}
/>
),
tbody: props => (
<tbody
className="break-words first:[&_td]:font-semibold first:[&_td]:text-violet-600 first:[&_td]:dark:text-violet-500 [&_tr]:!bg-transparent"
{...props}
/>
),
th: Th,
thead({ children, ...props }) {
return (
<thead {...props}>
{children.props.children[0].props.children ? (
children
) : (
<Tr>
<Th align="left">Option</Th>
<Th align="left">Type</Th>
{children.props.children.length === 4 && <Th align="left">Default Value</Th>}
<Th align="left">Description</Th>
</Tr>
)}
</thead>
);
},
tr: Tr,
...components
});