@octopusdeploy/design-system-components
Version:
The design systems component library.
8 lines (7 loc) • 329 B
TypeScript
import { type ReactElement } from "react";
import type { LiteralContent } from "./literalContent";
export interface LiteralRenderOptions {
code: "high-contrast" | "default";
link: "high-contrast" | "default";
}
export declare const renderLiteral: (content: LiteralContent, options: LiteralRenderOptions) => ReactElement;