mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 06:15:15 +00:00
19 lines
411 B
Objective-C
19 lines
411 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#if !defined (TextPathSide_)
|
|
#define TextPathSide_
|
|
|
|
NS_ENUM(NSInteger, TextPathSide) {
|
|
TextPathSideLeft,
|
|
TextPathSideRight,
|
|
TextPathSideDEFAULT = TextPathSideLeft,
|
|
};
|
|
|
|
static NSString* const TextPathSideStrings[] = {@"left", @"right", nil};
|
|
|
|
NSString* TextPathSideToString( enum TextPathSide fw );
|
|
|
|
enum TextPathSide TextPathSideFromString( NSString* s );
|
|
|
|
#endif
|