mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
36 lines
950 B
TypeScript
36 lines
950 B
TypeScript
import {
|
|
DocsBody as FumadocsDocsBody,
|
|
DocsDescription as FumadocsDocsDescription,
|
|
DocsPage as FumadocsDocsPage,
|
|
DocsTitle as FumadocsDocsTitle,
|
|
} from 'fumadocs-ui/layouts/docs/page';
|
|
import type { ComponentProps } from 'react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
type PageProps = ComponentProps<typeof FumadocsDocsPage>;
|
|
|
|
export const DocsPage = ({ ...props }: PageProps) => (
|
|
<FumadocsDocsPage {...props} />
|
|
);
|
|
|
|
export const DocsTitle = ({
|
|
className,
|
|
...props
|
|
}: ComponentProps<typeof FumadocsDocsTitle>) => (
|
|
<FumadocsDocsTitle
|
|
className={cn('mb-4 text-4xl tracking-tight', className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
export const DocsDescription = (
|
|
props: ComponentProps<typeof FumadocsDocsDescription>
|
|
) => <FumadocsDocsDescription {...props} />;
|
|
|
|
export const DocsBody = ({
|
|
className,
|
|
...props
|
|
}: ComponentProps<typeof FumadocsDocsBody>) => (
|
|
<FumadocsDocsBody className={cn('mx-auto w-full', className)} {...props} />
|
|
);
|