diff --git a/superset-frontend/packages/superset-ui-core/src/components/IconButton/index.tsx b/superset-frontend/packages/superset-ui-core/src/components/IconButton/index.tsx index f61e8937b9f..b8b8a66f3bc 100644 --- a/superset-frontend/packages/superset-ui-core/src/components/IconButton/index.tsx +++ b/superset-frontend/packages/superset-ui-core/src/components/IconButton/index.tsx @@ -50,17 +50,7 @@ const IconButton: React.FC = ({ }; const renderIcon = () => { - const iconContent = icon ? ( - {altText - ) : ( + const iconContent = (
= ({ height: 100px; `} > - + {icon ? ( + {altText + ) : ( + + )}
);