mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 23:42:24 +00:00
12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
|
import { EditorLanguage } from "@prisma/client";
|
||
|
import { COriginal, CplusplusOriginal } from "devicons-react";
|
||
|
|
||
|
// Mapping between EditorLanguage and icons
|
||
|
export const EditorLanguageIcons: Record<
|
||
|
EditorLanguage,
|
||
|
React.FunctionComponent<React.SVGProps<SVGElement> & { size?: number | string }>
|
||
|
> = {
|
||
|
[EditorLanguage.c]: COriginal,
|
||
|
[EditorLanguage.cpp]: CplusplusOriginal,
|
||
|
};
|