Prefix iOS symbols with RNSVG

fixes https://github.com/react-native-community/react-native-svg/issues/603
This commit is contained in:
Ben Roth
2018-02-14 11:53:27 -08:00
parent 354f8c2719
commit b217dcaff8
43 changed files with 632 additions and 784 deletions
+17
View File
@@ -0,0 +1,17 @@
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#ifndef RNSVGPropHelper_h
#define RNSVGPropHelper_h
@interface RNSVGPropHelper : NSObject
+ (double) fromRelativeWithNSString:(NSString *)length
relative:(double)relative
offset:(double)offset
scale:(double)scale
fontSize:(double)fontSize;
@end
#endif