File size: 377 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { FaFile } from "react-icons/fa";
import { getExtension } from "#/utils/utils";
import { EXTENSION_ICON_MAP } from "../../extension-icon-map.constant";

interface FileIconProps {
  filename: string;
}

export function FileIcon({ filename }: FileIconProps) {
  const extension = getExtension(filename);
  return EXTENSION_ICON_MAP[extension] || <FaFile />;
}