/* ============================================================================ * Copyright (c) Palo Alto Networks * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * ========================================================================== */ import React from "react"; import SchemaItem from "@theme/SchemaItem"; import { getSchemaName } from "../../markdown/schema"; interface ResponseHeadersProps { description?: string; example?: string; schema?: { type?: string; format?: string; }; } export const ResponseHeaders: React.FC<{ responseHeaders?: Record; }> = ({ responseHeaders }) => { if (!responseHeaders) { return null; } return ( ); }; export default ResponseHeaders;