You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
367 B
15 lines
367 B
#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
|
|
#import <UIKit/UIKit.h>
|
|
@interface RNSVGTopAlignedLabel : UILabel
|
|
#endif
|
|
@end
|