diff --git a/packages/react/src/components/LoadedCode.tsx b/packages/react/src/components/LoadedCode.tsx index 378e9a2..2d49181 100644 --- a/packages/react/src/components/LoadedCode.tsx +++ b/packages/react/src/components/LoadedCode.tsx @@ -2,67 +2,70 @@ import { useRef, useEffect, useState, forwardRef } from "react"; import hljs from "highlight.js"; import { Button } from "@components/Button"; import { useToast } from "@components/Toast"; +import { twMerge } from "tailwind-merge"; export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main"; -export const LoadedCode = forwardRef( - ({ from }, outRef) => { - const [state, setState] = useState(); - const { toast } = useToast(); +export const LoadedCode = forwardRef< + HTMLPreElement, + { from: string; className?: string } +>(({ from, className }, outRef) => { + const [state, setState] = useState(); + const { toast } = useToast(); - useEffect(() => { - (async () => { - const res = await fetch(from); - const text = await res.text(); - setState(text); - })(); - }, [from]); + useEffect(() => { + (async () => { + const res = await fetch(from); + const text = await res.text(); + setState(text); + })(); + }, [from]); - const ref = useRef(null); + const ref = useRef(null); - useEffect(() => { - if (state && ref.current && !ref.current.dataset.highlighted) { - hljs.configure({ ignoreUnescapedHTML: true }); - hljs.highlightElement(ref.current); - } - }, [state]); + useEffect(() => { + if (state && ref.current && !ref.current.dataset.highlighted) { + hljs.configure({ ignoreUnescapedHTML: true }); + hljs.highlightElement(ref.current); + } + }, [state]); - return ( -
+      
-        
-          {state ?? null}
-        
-      
- ); - } -); + + + + + {state ?? null} + + + ); +});