docusaurus-plugin-openapi-docs
Version:
OpenAPI plugin for Docusaurus.
35 lines (31 loc) • 944 B
text/typescript
/* ============================================================================
* 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 { create, guard } from "./utils";
import { LicenseObject } from "../openapi/types";
export function createLicense(license: LicenseObject) {
if (!license || !Object.keys(license).length) return "";
const { name, url } = license;
return create("div", {
style: {
marginBottom: "var(--ifm-paragraph-margin-bottom)",
},
children: [
create("h3", {
style: {
marginBottom: "0.25rem",
},
children: "License",
}),
guard(url, () =>
create("a", {
href: url,
children: name ?? url,
})
),
],
});
}