diff --git a/packages/react/src/components/LoadedCode.tsx b/packages/react/src/components/LoadedCode.tsx index 56e0203..4363438 100644 --- a/packages/react/src/components/LoadedCode.tsx +++ b/packages/react/src/components/LoadedCode.tsx @@ -1,4 +1,4 @@ -import {forwardRef, useEffect, useState} from "react"; +import { forwardRef, useEffect, useState } from "react"; import SyntaxHighlighter from "react-syntax-highlighter"; import { gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs"; import { Button } from "@components/Button"; @@ -63,7 +63,7 @@ export const LoadedCode = ({ {state ?? ""} @@ -72,11 +72,10 @@ export const LoadedCode = ({ ); }; -export const Code = forwardRef(({ - children, - className, - language, -}, ref) => { +export const Code = forwardRef< + HTMLDivElement, + { children: string; className?: string; language: string } +>(({ children, className, language }, ref) => { const { toast } = useToast(); return ( @@ -109,7 +108,7 @@ export const Code = forwardRef {children}