1 #if TARGET_OS_OSX 2 #import <React/RCTTextView.h> 3 @interface RNSVGTopAlignedLabel : NSTextView 4 5 @property NSAttributedString *attributedText; 6 @property NSLineBreakMode lineBreakMode; 7 @property NSInteger numberOfLines; 8 @property NSString *text; 9 @property NSTextAlignment textAlignment; 10 #else 11 #import <UIKit/UIKit.h> 12 @interface RNSVGTopAlignedLabel : UILabel 13 #endif 14 @end 15