mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:39:51 +08:00
80af2a65ed
* docs: add bun * docs: add bun * docs: add bun * docs: add bun
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import { ConfigProvider, Tabs } from 'antd';
|
|
import SourceCode from 'dumi/theme-default/builtins/SourceCode';
|
|
import type { Tab } from 'rc-tabs/lib/interface';
|
|
|
|
import NpmLogo from './npm';
|
|
import PnpmLogo from './pnpm';
|
|
import YarnLogo from './yarn';
|
|
import BunLogo from './bun';
|
|
|
|
interface InstallProps {
|
|
npm?: string;
|
|
yarn?: string;
|
|
pnpm?: string;
|
|
bun?: string;
|
|
}
|
|
|
|
const InstallDependencies: React.FC<InstallProps> = (props) => {
|
|
const { npm, yarn, pnpm, bun } = props;
|
|
const items: Tab[] = [
|
|
{
|
|
key: 'npm',
|
|
label: 'npm',
|
|
children: npm ? <SourceCode lang="bash">{npm}</SourceCode> : null,
|
|
icon: <NpmLogo />,
|
|
},
|
|
{
|
|
key: 'yarn',
|
|
label: 'yarn',
|
|
children: yarn ? <SourceCode lang="bash">{yarn}</SourceCode> : null,
|
|
icon: <YarnLogo />,
|
|
},
|
|
{
|
|
key: 'pnpm',
|
|
label: 'pnpm',
|
|
children: pnpm ? <SourceCode lang="bash">{pnpm}</SourceCode> : null,
|
|
icon: <PnpmLogo />,
|
|
},
|
|
{
|
|
key: 'bun',
|
|
label: 'Bun',
|
|
children: bun ? <SourceCode lang="bash">{bun}</SourceCode> : null,
|
|
icon: <BunLogo />,
|
|
},
|
|
].filter((item) => item.children);
|
|
|
|
return (
|
|
<ConfigProvider theme={{ components: { Tabs: { horizontalMargin: '0' } } }}>
|
|
<Tabs className="markdown" size="small" defaultActiveKey="npm" items={items} />
|
|
</ConfigProvider>
|
|
);
|
|
};
|
|
|
|
export default InstallDependencies;
|