mirror of
https://github.com/vercel/ai-elements.git
synced 2026-09-14 19:48:26 +08:00
30cbcfec97
* Migrate to oxlint / oxfmt * Initial fixes * Misc fixes * Temporary fixes * Update Ultracite * Update .oxlintrc.json * Update .oxlintrc.json * Start running manual fixes * Update .oxlintrc.json * AI Fixes Part 2 * AI Fixes Part 3 * AI Fixes Part 4 * AI Fixes Part 5 * AI Fixes Part 6 * AI Fixes Part 7 * AI Fixes Part 8 * AI Fixes Part 9 * AI Fixes Part 10 * AI Fixes Part 11 * AI Fixes Part 12 * Fix tests * Lint / test fixes * Update chat.tsx * Fix AI SDK React version * Misc fixes * Build fixes
37 lines
965 B
TypeScript
37 lines
965 B
TypeScript
import type { ComponentProps } from "react";
|
|
|
|
import { cn } from "@repo/shadcn-ui/lib/utils";
|
|
import {
|
|
DocsBody as FumadocsDocsBody,
|
|
DocsDescription as FumadocsDocsDescription,
|
|
DocsPage as FumadocsDocsPage,
|
|
DocsTitle as FumadocsDocsTitle,
|
|
} from "fumadocs-ui/layouts/docs/page";
|
|
|
|
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} />
|
|
);
|