/**
 * Ultra-Minimal Icon Fixes
 * 
 * ONLY fixes console errors - does NOT interfere with styled-components
 */

/* Fix ONLY the SVG console errors */
svg[width="small"],
svg[height="small"],
svg[width="medium"],
svg[height="medium"],
svg[width="large"],
svg[height="large"] {
  width: 1em;
  height: 1em;
}

/* That's it - no other rules that could interfere with styled-components */ 