mirror of
https://github.com/vercel/components.build.git
synced 2026-09-14 20:06:39 +08:00
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
import { DynamicLink } from "fumadocs-core/dynamic-link";
|
|
import { TypeTable } from "fumadocs-ui/components/type-table";
|
|
import defaultMdxComponents from "fumadocs-ui/mdx";
|
|
import type { MDXComponents } from "mdx/types";
|
|
import {
|
|
Callout,
|
|
CalloutContainer,
|
|
CalloutDescription,
|
|
CalloutTitle,
|
|
} from "./callout";
|
|
import { CodeBlock } from "./code-block";
|
|
import {
|
|
CodeBlockTab,
|
|
CodeBlockTabs,
|
|
CodeBlockTabsList,
|
|
CodeBlockTabsTrigger,
|
|
} from "./code-block-tabs";
|
|
import { Mermaid } from "./mermaid";
|
|
import { Video } from "./video";
|
|
|
|
export const getMDXComponents = (
|
|
components?: MDXComponents
|
|
): MDXComponents => ({
|
|
...defaultMdxComponents,
|
|
|
|
pre: CodeBlock,
|
|
|
|
a: ({ href, ...props }) =>
|
|
href.startsWith("/") ? (
|
|
<DynamicLink
|
|
className="font-normal text-primary no-underline"
|
|
href={`/[lang]${href}`}
|
|
{...props}
|
|
/>
|
|
) : (
|
|
<a
|
|
href={href}
|
|
{...props}
|
|
className="font-normal text-primary no-underline"
|
|
/>
|
|
),
|
|
|
|
CodeBlockTabs,
|
|
CodeBlockTabsList,
|
|
CodeBlockTabsTrigger,
|
|
CodeBlockTab,
|
|
|
|
TypeTable,
|
|
|
|
Callout,
|
|
CalloutContainer,
|
|
CalloutTitle,
|
|
CalloutDescription,
|
|
|
|
Mermaid,
|
|
|
|
Video,
|
|
|
|
// User components last to allow overwriting defaults
|
|
...components,
|
|
});
|