mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
@@ -1,5 +1,4 @@
|
||||
import {PropTypes} from 'react';
|
||||
|
||||
import stopsOpacity from '../lib/stopsOpacity';
|
||||
import {numberProp} from '../lib/props';
|
||||
import Gradient from './Gradient';
|
||||
@@ -7,7 +6,7 @@ import {LINEAR_GRADIENT} from '../lib/extract/extractBrush';
|
||||
import insertColorStopsIntoArray from '../lib/insertProcessor';
|
||||
|
||||
function LinearGradientGenerator(stops, x1, y1, x2, y2) {
|
||||
var brushData = [LINEAR_GRADIENT, x1, y1, x2, y2];
|
||||
let brushData = [LINEAR_GRADIENT, ...[x1, y1, x2, y2].map(prop => prop.toString())];
|
||||
insertColorStopsIntoArray(stops, brushData, 5);
|
||||
this._brush = brushData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user