UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

16 lines 561 B
import { FC } from 'react'; import { CodeCopyStyles } from '../../theme'; export interface CodeCopyProps { /** Code content to display and copy */ code: string; /** Programming language for syntax highlighting */ language: string; /** Comprehensive styling options including theme, custom colors, and layout properties */ styles?: CodeCopyStyles; } /** * A code display component with syntax highlighting and copy functionality. */ declare const CodeCopy: FC<CodeCopyProps>; export default CodeCopy; //# sourceMappingURL=index.d.ts.map