mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
22 lines
561 B
Objective-C
22 lines
561 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextDecoration_h
|
|
#define TextDecoration_h
|
|
|
|
NS_ENUM(NSInteger, TextDecoration) {
|
|
TextDecorationNone,
|
|
TextDecorationUnderline,
|
|
TextDecorationOverline,
|
|
TextDecorationLineThrough,
|
|
TextDecorationBlink,
|
|
TextDecorationDEFAULT = TextDecorationNone,
|
|
};
|
|
|
|
static NSString* const TextDecorationStrings[] = {@"None", @"Underline", @"Overline", @"LineThrough", @"Blink", nil};
|
|
|
|
NSString* TextDecorationToString( enum TextDecoration fw );
|
|
|
|
enum TextDecoration TextDecorationFromString( NSString* s );
|
|
|
|
#endif
|