@octopusdeploy/design-system-components
Version:
The design systems component library.
10 lines (9 loc) • 393 B
TypeScript
export interface CodeDecoratorProps {
value: string;
}
/**
* CodeDecorator A styled inline code element for highlighting technical terms, commands, and snippets within text
* @param {string} value - The value to display in the code decorator
*/
export declare function CodeDecorator({ value }: CodeDecoratorProps): import("react/jsx-runtime").JSX.Element;
export default CodeDecorator;