1 /**
2  * Copyright (c) 2015-present, Horcrux.
3  * All rights reserved.
4  *
5  * This source code is licensed under the MIT-style license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8 
9 #import "RNSVGLength.h"
10 #import "RNSVGNode.h"
11 
12 @interface RNSVGLinearGradient : RNSVGNode
13 
14 @property (nonatomic, strong) RNSVGLength *x1;
15 @property (nonatomic, strong) RNSVGLength *y1;
16 @property (nonatomic, strong) RNSVGLength *x2;
17 @property (nonatomic, strong) RNSVGLength *y2;
18 @property (nonatomic, copy) NSArray<NSNumber *> *gradient;
19 @property (nonatomic, assign) RNSVGUnits gradientUnits;
20 @property (nonatomic, assign) CGAffineTransform gradientTransform;
21 
22 @end
23