mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
Added CI workflow and local pre-commit hook for formatting and linting the newly added JS, iOS and Android code.
18 lines
485 B
Objective-C
18 lines
485 B
Objective-C
#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
|