refactor: rename ios/ source folder to apple/

This commit is contained in:
Adam Gleitman
2020-11-25 16:31:39 -08:00
parent 839ccd1908
commit a56d22a985
139 changed files with 2 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#import "RNSVGGroup.h"
#import "RNSVGLength.h"
@interface RNSVGMask : RNSVGGroup
@property (nonatomic, strong) RNSVGLength *x;
@property (nonatomic, strong) RNSVGLength *y;
@property (nonatomic, strong) RNSVGLength *maskwidth;
@property (nonatomic, strong) RNSVGLength *maskheight;
@property (nonatomic, assign) RNSVGUnits maskUnits;
@property (nonatomic, assign) RNSVGUnits maskContentUnits;
@property (nonatomic, assign) CGAffineTransform maskTransform;
@end