this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Warn if icon not found

+5
+5
src/components/icon.jsx
··· 146 146 147 147 const iconSize = SIZES[size]; 148 148 let iconBlock = ICONS[icon]; 149 + if (!iconBlock) { 150 + console.warn(`Icon ${icon} not found`); 151 + return null; 152 + } 153 + 149 154 let rotate, flip; 150 155 if (Array.isArray(iconBlock)) { 151 156 [iconBlock, rotate, flip] = iconBlock;