mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 06:15:15 +00:00
20 lines
417 B
Objective-C
20 lines
417 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#if !defined (FontStyle_)
|
|
#define FontStyle_
|
|
|
|
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
|