import React from "react"; import clsx from "clsx"; type Props = { version: string }; export const DocVersionBadge = ({ version }: Props) => { return (
Version: {version}
); };