diff --git a/packages/core/src/components/Icon/CustomSvgIcon/CustomSvgIcon.tsx b/packages/core/src/components/Icon/CustomSvgIcon/CustomSvgIcon.tsx index 8a103b7cda..08ae767730 100644 --- a/packages/core/src/components/Icon/CustomSvgIcon/CustomSvgIcon.tsx +++ b/packages/core/src/components/Icon/CustomSvgIcon/CustomSvgIcon.tsx @@ -56,7 +56,7 @@ const CustomSvgIcon: FunctionComponent = ({ if (typeof src !== "string") return null; // eslint-disable-next-line @typescript-eslint/no-explicit-any - const SVGComponent = (SVG.default || SVG) as React.FC; + const SVGComponent = (SVG.default || SVG) as React.FC; // fix esm issue const PlaceHolder =
;