newsmemory-ios-sdk/Frameworks/RNSVG.xcframework/ios-arm64/Headers/RNSVGPropHelper.h

18 lines
485 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#import "RNSVGLength.h"
#ifndef RNSVGPropHelper_h
#define RNSVGPropHelper_h
@interface RNSVGPropHelper : NSObject
2024-11-20 14:28:34 +00:00
+ (CGFloat)fromRelativeWithNSString:(NSString *)length relative:(CGFloat)relative fontSize:(CGFloat)fontSize;
2024-05-02 15:08:24 +00:00
2024-11-20 14:28:34 +00:00
+ (CGFloat)fromRelative:(RNSVGLength *)length relative:(CGFloat)relative fontSize:(CGFloat)fontSize;
2024-05-02 15:08:24 +00:00
2024-11-20 14:28:34 +00:00
+ (CGFloat)fromRelative:(RNSVGLength *)length relative:(CGFloat)relative;
2024-05-02 15:08:24 +00:00
@end
#endif