import React from "react"; import { Icon, Intent } from "@blueprintjs/core"; import { IconName } from "@blueprintjs/icons"; import { noop } from "utils/AppsmithUtils"; export type IconType = IconName | string; class IconComponent extends React.Component { render() { return ( ); } } export interface IconComponentProps { iconSize?: number; iconName?: IconType; intent?: Intent; disabled?: boolean; onClick?: () => void; color: string; } export default IconComponent;