UNPKG

@mantine/code-highlight

Version:

Code highlight with Mantine theme

10 lines (9 loc) 396 B
interface FileIconProps { fileName: string | undefined; getFileIcon?: ((fileName: string) => React.ReactNode) | undefined; fileIcon: React.ReactNode | undefined; className?: string; style?: React.CSSProperties; } export declare function FileIcon({ fileIcon, fileName, getFileIcon, className, style }: FileIconProps): import("react/jsx-runtime").JSX.Element | null; export {};