feat: add SyntaxHighlighter instead of deprecated Highlight
This commit is contained in:
parent
b17b5ad0f9
commit
6d1732d049
@ -1,5 +1,6 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import Highlight from "react-highlight";
|
import SyntaxHighlighter from "react-syntax-highlighter";
|
||||||
|
import { gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@components/Button";
|
||||||
import { useToast } from "@components/Toast";
|
import { useToast } from "@components/Toast";
|
||||||
import { twMerge } from "tailwind-merge";
|
import { twMerge } from "tailwind-merge";
|
||||||
@ -59,13 +60,14 @@ export const LoadedCode = ({
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</Button>
|
</Button>
|
||||||
<Highlight
|
<SyntaxHighlighter
|
||||||
className={`w-full h-64 rounded-lg language-tsx ${
|
language="typescript"
|
||||||
!state ? "animate-pulse" : ""
|
style={gruvboxDark}
|
||||||
}`}
|
className={`w-full h-64 rounded-lg ${!state ? "animate-pulse" : ""}`}
|
||||||
|
customStyle={{ padding: "1rem" }}
|
||||||
>
|
>
|
||||||
{state ?? ""}
|
{state ?? ""}
|
||||||
</Highlight>
|
</SyntaxHighlighter>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user