mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 00:01:14 +00:00
16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
import defaultMdxComponents from 'fumadocs-ui/mdx';
|
|
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
|
|
import { BookOpen, Braces } from 'lucide-react';
|
|
import type { MDXComponents } from 'mdx/types';
|
|
|
|
export function getMDXComponents(components?: MDXComponents): MDXComponents {
|
|
return {
|
|
...defaultMdxComponents,
|
|
Tab,
|
|
Tabs,
|
|
BookOpen,
|
|
Braces,
|
|
...components,
|
|
};
|
|
}
|