// material-ui import { useTheme } from '@mui/material/styles'; import { Card } from '@mui/material'; // third-party import SyntaxHighlighter from 'react-syntax-highlighter'; import { a11yDark, a11yLight } from 'react-syntax-highlighter/dist/esm/styles/hljs'; // ==============================|| SYNTAX HIGHLIGHTER ||============================== // export interface ReactSyntaxHighlighterProps { codeString: string; showLineNumbers: boolean; } const ReactSyntaxHighlighter = ({ codeString, showLineNumbers = true }: ReactSyntaxHighlighterProps) => { const theme = useTheme(); return ( {codeString} ); }; export default ReactSyntaxHighlighter;