import Translate from "@docusaurus/Translate" import type { JSX } from "react" // Label for "string" export default function StringLabel({ format, }: { format?: string }): JSX.Element { return ( {"string"} {format !== undefined && <> {`(${format})`}} ) }