import * as React from 'react'; import Box from '@mui/material/Box'; import { FileIcon } from '@/components/core/file-icon'; import type { ItemType } from './types'; export interface ItemIconProps { extension?: string; type: ItemType; } export function ItemIcon({ type, extension }: ItemIconProps): React.JSX.Element { return type === 'folder' ? : ; } function FolderIcon(): React.JSX.Element { return ( ); }