@mantine/code-highlight
Version:
Code highlight with Mantine theme
11 lines (10 loc) • 323 B
TypeScript
interface CopyCodeButtonProps {
code: string;
copiedLabel?: string;
copyLabel?: string;
}
export declare function CopyCodeButton({ code, copyLabel, copiedLabel, }: CopyCodeButtonProps): import("react/jsx-runtime").JSX.Element;
export declare namespace CopyCodeButton {
var displayName: string;
}
export {};