refactor(types): remove icon property from EditorLanguageMetadata type

This commit is contained in:
cfngc4594 2025-03-16 13:23:32 +08:00
parent d1188f5ea6
commit 939cd4b2f0

View File

@ -5,5 +5,4 @@ export type EditorLanguageMetadata = {
label: string;
fileName: string;
fileExtension: string;
icon: React.FunctionComponent<React.SVGProps<SVGElement> & { size?: number | string }>;
};