Files
react-native-svg/apple/Text/RNSVGTopAlignedLabel.h
2020-11-25 16:31:39 -08:00

14 lines
343 B
Objective-C

#if TARGET_OS_OSX
#import <React/RCTTextView.h>
@interface RNSVGTopAlignedLabel : NSTextView
@property NSAttributedString *attributedText;
@property NSLineBreakMode lineBreakMode;
@property NSInteger numberOfLines;
@property NSString *text;
@property NSTextAlignment textAlignment;
#else
@interface RNSVGTopAlignedLabel : UILabel
#endif
@end