mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
19 lines
456 B
Objective-C
19 lines
456 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextPathSpacing_h
|
|
#define TextPathSpacing_h
|
|
|
|
NS_ENUM(NSInteger, TextPathSpacing) {
|
|
TextPathSpacingAutoSpacing,
|
|
TextPathSpacingExact,
|
|
TextPathSpacingDEFAULT = TextPathSpacingAutoSpacing,
|
|
};
|
|
|
|
static NSString* const TextPathSpacingStrings[] = {@"auto", @"exact", nil};
|
|
|
|
NSString* TextPathSpacingToString( enum TextPathSpacing fw );
|
|
|
|
enum TextPathSpacing TextPathSpacingFromString( NSString* s );
|
|
|
|
#endif
|