File size: 414 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { DiJavascript } from "react-icons/di";
import {
  FaCss3,
  FaHtml5,
  FaList,
  FaMarkdown,
  FaNpm,
  FaPython,
} from "react-icons/fa";

export const EXTENSION_ICON_MAP: Record<string, React.ReactNode> = {
  js: <DiJavascript />,
  ts: <DiJavascript />,
  py: <FaPython />,
  css: <FaCss3 />,
  json: <FaList />,
  npmignore: <FaNpm />,
  html: <FaHtml5 />,
  md: <FaMarkdown />,
};