import { QualifierMessages } from "@theme/JSONSchemaViewer/utils" import { useJSVOptionsContext } from "@theme/JSONSchemaViewer/contexts" import { TypeLabel, StringLabel } from "@theme/JSONSchemaViewer/labels" import { CreateDescription } from "@theme/JSONSchemaViewer/JSONSchemaElements" import type { JSX } from "react" import type { JSONSchemaNS } from "@theme/JSONSchemaViewer/types" type Props = { [x: string]: any nullable?: boolean description?: string schema: JSONSchemaNS.String } export default function CreateString(props: Props): JSX.Element { const { schema, nullable, description } = props const options = useJSVOptionsContext() const format = schema.format return ( <>  : 
{description !== undefined && ( )} ) }