mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
20 lines
412 B
Objective-C
20 lines
412 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef FontStyle_h
|
|
#define FontStyle_h
|
|
|
|
NS_ENUM(NSInteger, FontStyle) {
|
|
FontStyleNormal,
|
|
FontStyleItalic,
|
|
FontStyleOblique,
|
|
FontStyleDEFAULT = FontStyleNormal,
|
|
};
|
|
|
|
static NSString* const FontStyleStrings[] = {@"normal", @"italic", @"oblique", nil};
|
|
|
|
NSString* FontStyleToString( enum FontStyle fw );
|
|
|
|
enum FontStyle FontStyleFromString( NSString* s );
|
|
|
|
#endif
|