mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-29 13:21:50 +00:00
fix rgba fill and stroke bug
This commit is contained in:
+4
-1
@@ -1,5 +1,8 @@
|
||||
import _ from 'lodash';
|
||||
export default function (stops, opacity) {
|
||||
if (isNaN(opacity)) {
|
||||
opacity = 1;
|
||||
}
|
||||
|
||||
return _.reduce(stops, (ret, color, key) => {
|
||||
ret[key] = color.alpha(color.alpha() * opacity).rgbaString();
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user