import _React from "react"; import { Button, Space, Tooltip } from "antd"; import { LeftOutlined, RightOutlined } from "@ant-design/icons"; import type { VersionSwitcherProps } from "../../types/chat" export function VersionSwitcher({ versions, currentVersion, onSwitch, }: VersionSwitcherProps) { if (versions.length <= 1) return null; const canGoPrev = currentVersion > 0; const canGoNext = currentVersion < versions.length - 1; const currentVersionInfo = versions[currentVersion]; return (
} > {currentVersion + 1} / {versions.length}