From d25c2df392bd62c8c12dfb60832bf654f6afa9f4 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 4 Jan 2024 18:55:21 +0800 Subject: [PATCH] Warn if icon not found --- src/components/icon.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/icon.jsx b/src/components/icon.jsx index 3a2aea25..1f60dcba 100644 --- a/src/components/icon.jsx +++ b/src/components/icon.jsx @@ -146,6 +146,11 @@ function Icon({ const iconSize = SIZES[size]; let iconBlock = ICONS[icon]; + if (!iconBlock) { + console.warn(`Icon ${icon} not found`); + return null; + } + let rotate, flip; if (Array.isArray(iconBlock)) { [iconBlock, rotate, flip] = iconBlock;