import { useI18n } from '@rspress/core/runtime'; import { IconGithub, IconGitlab, SvgWrapper } from '@rspress/core/theme'; import './index.scss'; export interface SourceCodeProps { href: string; platform?: 'github' | 'gitlab'; } export function SourceCode(props: SourceCodeProps) { const { href, platform = 'github' } = props; const t = useI18n(); return (
{ } {t('sourceCodeText')}
); }