| 7 | import { highlighter } from "@/lib/rehype/syntax-highlighting" |
| 8 | |
| 9 | interface ThemeCodeProps { |
| 10 | css: string |
| 11 | } |
| 12 | |
| 13 | export const ThemeCode = ({ css }: ThemeCodeProps) => { |
| 14 | const prettyCode = React.useMemo(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected