@cimpress/react-components
Version:
React components to support the MCP styleguide
13 lines • 378 B
TypeScript
import React from 'react';
export interface CodeExampleProps {
/**
* The code to be displayed
*/
code: string;
/**
* Whether the codeblock should be expanded on initial render
*/
initialOpen?: boolean;
}
export declare function CodeExample({ code, initialOpen }: CodeExampleProps): React.JSX.Element;
//# sourceMappingURL=CodeExample.d.ts.map