mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
18 lines
423 B
Objective-C
18 lines
423 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
#ifndef PropHelper_h
|
|
#define PropHelper_h
|
|
|
|
@interface PropHelper : NSObject
|
|
|
|
+ (double) fromRelativeWithNSString:(NSString *)length
|
|
relative:(double)relative
|
|
offset:(double)offset
|
|
scale:(double)scale
|
|
fontSize:(double)fontSize;
|
|
|
|
@end
|
|
|
|
#endif
|