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
+22
View File
@@ -0,0 +1,22 @@
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#import "RNSVGLength.h"
#ifndef RNSVGPropHelper_h
#define RNSVGPropHelper_h
@interface RNSVGPropHelper : NSObject
+ (CGFloat) fromRelativeWithNSString:(NSString *)length
relative:(CGFloat)relative
fontSize:(CGFloat)fontSize;
+ (CGFloat) fromRelative:(RNSVGLength*)length
relative:(CGFloat)relative
fontSize:(CGFloat)fontSize;
+ (CGFloat)fromRelative:(RNSVGLength*)length
relative:(CGFloat)relative;
@end
#endif