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 "RNSVGRenderable.h"
11 
12 /**
13  * RNSVG defination are implemented as abstract UIViews for all elements inside Defs.
14  */
15 
16 @interface RNSVGUse : RNSVGRenderable
17 
18 @property (nonatomic, strong) NSString *href;
19 @property (nonatomic, strong) RNSVGLength *x;
20 @property (nonatomic, strong) RNSVGLength *y;
21 @property (nonatomic, strong) RNSVGLength *usewidth;
22 @property (nonatomic, strong) RNSVGLength *useheight;
23 @end
24