> For AI agents: the complete documentation index is available at https://rspress.rs/zh/llms.txt, the full documentation bundle is available at https://rspress.rs/zh/llms-full.txt.

# SourceCode

`SourceCode` 用于渲染仓库源码的链接。

## 用法

```mdx title="index.mdx" preview
import { SourceCode } from '@rspress/core/theme';

<SourceCode href="https://github.com/web-infra-dev/rspress/blob/main/packages/core/src/theme/components/SourceCode/index.tsx" />
```

## Props

```ts
interface SourceCodeProps {
  /** 源码链接 */
  href: string;
  /** 代码托管平台，决定显示的图标 */
  platform?: 'github' | 'gitlab';
}
```

通过 `platform` 切换 GitHub/GitLab 图标，默认为 `'github'`。
