mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
19 lines
406 B
Objective-C
19 lines
406 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextPathSide_h
|
|
#define TextPathSide_h
|
|
|
|
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
|