import type { CSSProperties, SVGAttributes } from 'react'; export interface FileIconStyle extends CSSProperties { '--file-icon-primary-color'?: string; } export interface FileIconProps extends Omit, 'type'> { /** Тип файла. */ type?: string | null; /** Нужно ли выводить название типа. */ isTypeVisible?: boolean; /** Стили. */ style?: FileIconStyle; }