import { DeclaredIcon, getSizeInPx } from 'cad/icons/DeclarativeIcon';
import { IconDeclaration } from 'cad/icons/IconDeclaration';
import React from 'react';
import { AiOutlineQuestion } from 'react-icons/ai';
import { IconType } from 'react-icons/lib';
export function resolveIcon(iconDef: IconDeclaration | IconType) {
if (iconDef.iconType || iconDef.iconSet) {
return (props) =>
} else {
if (!iconDef || typeof(iconDef) !== 'object') {
return size => ;
}
return iconDef;
}
}