mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
19 lines
447 B
Objective-C
19 lines
447 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextPathMidLine_h
|
|
#define TextPathMidLine_h
|
|
|
|
NS_ENUM(NSInteger, TextPathMidLine) {
|
|
TextPathMidLineSharp,
|
|
TextPathMidLineSmooth,
|
|
TextPathMidLineDEFAULT = TextPathMidLineSharp,
|
|
};
|
|
|
|
static NSString* const TextPathMidLineStrings[] = {@"sharp", @"smooth", nil};
|
|
|
|
NSString* TextPathMidLineToString( enum TextPathMidLine fw );
|
|
|
|
enum TextPathMidLine TextPathMidLineFromString( NSString* s );
|
|
|
|
#endif
|