) {
const {
children, type, height = 24, width = 24, onClick, className = '',
} = props;
const iconStyle = {
width: typeof width === 'string' ? width : `${width}px`,
minWidth: typeof width === 'string' ? width : `${width}px`,
height: typeof height === 'string' ? height : `${height}px`,
minHeight: typeof height === 'string' ? height : `${height}px`,
};
return (
{children || changeTypeToIconComponent(type)}
);
}