mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
14 lines
343 B
Objective-C
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
|