UNPKG

schyma

Version:

JSON Schemas Visualizer React component

12 lines 532 B
import React from "react"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { dracula } from "react-syntax-highlighter/dist/cjs/styles/hljs"; const CodeComponent = ({ children }) => { return (React.createElement(SyntaxHighlighter, { language: "javascript", style: dracula, customStyle: { background: "#1E293B", borderRadius: "10px", color: "#94A3B8" }, showLineNumbers: true }, children)); }; export default CodeComponent; //# sourceMappingURL=Code.js.map