Recently my team upgraded from React 15.1 to 15.3. With this upgrade comes these errors:
Код: Выделить всё
warning.js:36 Warning: Unknown DOM property stroke-width. Did you mean strokeWidth? in g in svg in div (created by Unknown) in div (created by Unknown) in Unknown warning.js:36 Warning: Unknown DOM property fill-rule. Did you mean fillRule? in g in svg in div (created by Unknown) in div (created by Unknown) in Unknown
Код: Выделить всё
.icon-sprite { background-image: url('~icons/sprite.svg'); } @mixin spriteIcon72( $spriteVals ) { @extend .icon-sprite; background-repeat: no-repeat; background-position: nth($spriteVals, 1) nth($spriteVals, 2); background-size: 1300px 600px; }
Код: Выделить всё
.active-icon { @include spriteIcon72($sprite-active); }
Источник: https://stackoverflow.com/questions/390 ... ributes-to