diff --git a/packages/components/src/core/Callout/index.tsx b/packages/components/src/core/Callout/index.tsx index 73c42c975..365d17b9a 100644 --- a/packages/components/src/core/Callout/index.tsx +++ b/packages/components/src/core/Callout/index.tsx @@ -56,7 +56,7 @@ const Callout = ({ }; const getIcon = () => { - if (icon) return icon; + if (icon !== undefined) return icon; switch (intent) { case "success":